User bk1e - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T02:31:11Zhttp://stackoverflow.com/feeds/user/8090http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1693634/undefined-symbols-vtable-for-and-typeinfo-for/1693694#16936941Answer by bk1e for Undefined symbols "vtable for ..." and "typeinfo for..." ?bk1e2009-11-07T17:00:39Z2009-11-07T19:01:49Z<p>Do you have an <code>Obstacle.cc</code> file? If so, you need to make sure it gets built into <code>Obstacle.o</code>, and that <code>Obstacle.o</code> gets added to the command line when you link your program.</p>
<p>Also, make sure that you define all of the non-pure-virtual methods you declare. If you declare a pure virtual destructor, you need to define that too.</p>
http://stackoverflow.com/questions/1654815/can-ruby-be-used-to-develop-simple-windows-applications/1654877#16548772Answer by bk1e for Can Ruby be used to develop simple Windows applications?bk1e2009-10-31T16:35:23Z2009-10-31T16:35:23Z<p>Ruby is a general purpose object oriented scripting language. Ruby on Rails is a web application framework. Ruby predates Rails by about ten years. Don't confuse the two.</p>
http://stackoverflow.com/questions/1471109/c-c-libraries-for-reading-from-universal-disk-format-devices-or-files/1475657#1475657-1Answer by bk1e for C/C++ Libraries for reading from Universal Disk Format devices or filesbk1e2009-09-25T06:01:51Z2009-10-26T17:37:35Z<p><a href="http://7-zip.org/" rel="nofollow">7-Zip</a> supports extracting files from UDF and ISO disk images, and is mostly LGPL licensed. Specifically, the UDF implementation code appears to be in <code>CPP/7zip/Archive/Udf/UdfIn.cpp</code>. </p>
http://stackoverflow.com/questions/1598703/profiling-dll-lib-bloat/1598977#15989774Answer by bk1e for Profiling DLL/LIB Bloatbk1e2009-10-21T06:03:24Z2009-10-21T06:08:36Z<p>When you build your DLL, you can pass <a href="http://msdn.microsoft.com/en-us/library/k7xkk3e2.aspx" rel="nofollow">/MAP</a> to the linker to have it generate a map file containing the addresses of all symbols in the resulting image. You will probably have to do some scripting to calculate the size of each symbol.</p>
<p>Using a <a href="http://technet.microsoft.com/en-us/sysinternals/bb897439.aspx" rel="nofollow">"strings" utility</a> to scan your DLL might reveal unexpected or unused printable strings (e.g. resources, RCS IDs, <code>__FILE__</code> macros, debugging messages, assertions, etc.).</p>
<p>Also, if you're not already compiling with <a href="http://msdn.microsoft.com/en-us/library/f9534wye.aspx" rel="nofollow">/Os</a> enabled, it's worth a try.</p>
http://stackoverflow.com/questions/1579452/visual-studio-debugger-decrease-time-to-attach-load-symbols/1579468#15794682Answer by bk1e for Visual Studio Debugger - decrease time to attach & load symbolsbk1e2009-10-16T17:53:29Z2009-10-20T20:47:30Z<p>Make sure your symbol path includes a local cache directory so that it doesn't download symbols from Microsoft's public symbol server every time you attach.</p>
<p>Also, I haven't tried this with Visual Studio, but you may also be able to set up an <a href="http://msdn.microsoft.com/en-us/library/cc901405.aspx" rel="nofollow">exclusion list</a> identifying modules for which you don't have symbols.</p>
http://stackoverflow.com/questions/1481382/runtime-error-sigsegv/1481516#14815161Answer by bk1e for runtime error (SIGSEGV)bk1e2009-09-26T15:59:15Z2009-09-26T16:05:45Z<p>Depending on the input you pass to this program, the variable <code>n</code> may be more than 1000, <code>cin>>arr[i]</code> may read more than 80 characters, and if <code>num[i] <= 0 || num[i] >= 80</code> then you will index past the beginning or end of one of your strings. All of these problems exist because this code uses fixed-size arrays and doesn't do any bounds checking.</p>
http://stackoverflow.com/questions/1471353/whats-the-c-equivalent-of-uint32max/1473136#14731360Answer by bk1e for What's the C++ equivalent of UINT32_MAX?bk1e2009-09-24T17:39:24Z2009-09-24T17:39:24Z<p>You may be able to eliminate the <code>#include</code> order problems by changing your build process to define the <code>__STDC_LIMIT_MACROS</code> symbol on the compiler command line instead:</p>
<pre><code>cxx -D__STDC_LIMIT_MACROS ...
</code></pre>
<p>Of course, you would still have trouble if a header <code>#undef</code>s this symbol. </p>
<p>Also, the authors of the standard library implementation that you are using might not have intended for users to set that particular symbol; there might be a compiler flag or a different symbol that users are intended to use to enable C99 types in C++.</p>
http://stackoverflow.com/questions/1387064/how-to-print-the-error-message-of-getlasterror-in-a-textual-form/1387798#13877980Answer by bk1e for How to print the error message of GetLastError() in a textual form?bk1e2009-09-07T06:21:24Z2009-09-07T06:21:24Z<p>MSDN has some sample code that demonstrates how to use <code>FormatMessage()</code> and <code>GetLastError()</code> together: <a href="http://msdn.microsoft.com/en-us/library/ms680582%28VS.85%29.aspx" rel="nofollow">Retrieving the Last-Error Code</a></p>
http://stackoverflow.com/questions/1353252/time-complexity-of-the-program/1361089#13610890Answer by bk1e for Time complexity of the programbk1e2009-09-01T07:43:07Z2009-09-01T07:43:07Z<blockquote>
<p>What is the time complexity of my above program??</p>
</blockquote>
<p>To empirically measure the time complexity of your program, you need more than one data point. Run your program for multiple values of N, then make a graph of N vs. time. You can do this using a spreadsheet, GNUplot, or graph paper and pencil. You can also use software and/or plain old mathematics to find a polynomial curve that fits your data.</p>
<p>Non-empirically: much has been written (and lectured in computer science classes) about analyzing computational complexity. The Wikipedia article on <a href="http://en.wikipedia.org/wiki/Computational%5Fcomplexity%5Ftheory" rel="nofollow">computational complexity theory</a> might provide some starting points for further reading.</p>
http://stackoverflow.com/questions/1354958/memory-leaks-in-c-via-newdelete/1355733#13557331Answer by bk1e for Memory leaks in C++ (via new+delete)bk1e2009-08-31T04:02:33Z2009-08-31T04:07:35Z<p>Are you asking about run time call count (e.g. counted using a instrumenting profiler)? Having exactly the same number of calls to the <code>new</code> (excluding placement new) and <code>delete</code> operators is neither a necessary nor sufficient condition of leak-free code:</p>
<ul>
<li>Deleting <code>NULL</code> is harmless, so many leak-free programs call <code>delete</code> more times than <code>new</code>. </li>
<li>A program that calls <code>delete</code> as many times as <code>new</code> but sometimes deletes <code>NULL</code> has a leak. So do some programs that call <code>delete</code> more times than <code>new</code> but sometimes delete <code>NULL</code>.</li>
<li>A program that calls <code>new</code> more often than <code>delete</code> has a leak.</li>
</ul>
<p>To validate that there are no leaks, you must verify that each address returned from <code>new</code> is passed to <code>delete</code>, not just verify that the call count matches. And even that's oversimplifying, since addresses are reused for multiple allocations.</p>
<p>Also, programs that don't leak memory that they have allocated may still leak other resources (such as OS file handles).</p>
http://stackoverflow.com/questions/1344629/calling-unexported-functions-in-win32-c/1345183#13451835Answer by bk1e for Calling unexported functions in Win32 C++bk1e2009-08-28T05:32:04Z2009-08-28T05:32:04Z<p>Calling unexported functions that are defined in the same module (DLL/EXE) as your code is easy: just call them like any other C++ function. Obviously this isn't what you're asking about. If you want to call unexported functions in a different module, you need to find out their addresses somehow. </p>
<p>One way to do this is to have the first module call an exported function in the second module which returns a function pointer. (Or: a struct containing function pointers, a pointer to an instance of a class, etc.) Think factory pattern.</p>
<p>Another way is to export a registration function from the first module and have the second module's initialization code call it, passing it pointers to unexported functions along with some sort of identifying info. (Better also have a corresponding unregistration function which is called before the second module is unloaded.)</p>
<p>Yet another way is to grovel through the debug symbols using <code>dbghelp.dll</code>. This would not be recommended for a real-world application because it would require distributing debug symbols and would be extremely slow, not to mention overly complex.</p>
http://stackoverflow.com/questions/1345077/which-is-the-best-compiler-for-c/1345159#13451599Answer by bk1e for Which is the best compiler for c++?bk1e2009-08-28T05:21:21Z2009-08-28T05:21:21Z<p>If you're looking for a C++ compiler that accurately implements the spec, you may want to look into the <a href="http://www.comeaucomputing.com/" rel="nofollow">Comeau C++ compiler</a>.</p>
http://stackoverflow.com/questions/1326982/detecting-precompiled-headers/1338766#13387662Answer by bk1e for Detecting precompiled headersbk1e2009-08-27T03:53:16Z2009-08-27T03:53:16Z<p>If Visual C++ defined a constant to indicate whether precompiled headers were in use, it would probably be listed in <a href="http://msdn.microsoft.com/en-us/library/b0084kay.aspx" rel="nofollow">Predefined Macros</a>. And it's not documented there, so it probably doesn't exist. (If it does exist, it's probably undocumented and may change in a future version.)</p>
http://stackoverflow.com/questions/1236670/how-to-make-opengl-apps-in-64-bits-windows/1237091#12370914Answer by bk1e for How to make OpenGL apps in 64-bits windowsbk1e2009-08-06T05:20:23Z2009-08-06T05:20:23Z<p>The 64-bit OpenGL import library is included in the <a href="http://msdn.microsoft.com/en-us/windows/bb980924.aspx" rel="nofollow">Windows SDK</a> and gets installed to <code>%ProgramFiles%\Microsoft SDKs\Windows\<version>\Lib\x64\OpenGL32.lib</code>. The corresponding DLL is named <code>opengl32.dll</code> and is located in <code>%SystemRoot%\system32</code>. The 32-bit version is also named <code>opengl32.dll</code> and is located in <code>%SystemRoot%\syswow64</code> on 64-bit Windows. </p>
<p>You can't load 32-bit DLLs in a 64-bit process, so whatever you read about x64 apps using the 32-bit OpenGL DLL was incorrect. There is definitely a 64-bit OpenGL DLL, but it has "32" in its name, presumably to make porting easier.</p>
http://stackoverflow.com/questions/1195320/avoiding-repeated-replacements-in-the-c-pre-processor/1198184#11981840Answer by bk1e for Avoiding repeated replacements in the C pre-processorbk1e2009-07-29T05:28:51Z2009-07-29T05:28:51Z<p>Remove the <code>#define</code>s and change the code generator to generate the appropriate code. The <code>#define</code>s you described don't seem to be buying you anything except slightly shorter identifiers (or there's something important going on that you didn't mention). Expand variables in the code generator, not in the C preprocessor.</p>
<p>Regarding compatibility with 10+ years of simulations, I would hope that the original input files to the code generator have been saved so you can run it again if necessary (or even better, that generating the code is part of he build process). If this is some sort of interactive code-generating wizard and/or developers edit the generated code, you're already in a world of hurt, and I have to wonder how you're making any significant changes to the generated code in the first place (manually? post-processing script?).</p>
http://stackoverflow.com/questions/1149994/stdlist-stdvector-methods-and-malloc/1150627#11506273Answer by bk1e for std::list, std::vector methods and malloc()bk1e2009-07-19T19:11:50Z2009-07-19T19:11:50Z<p>It sounds like you want to preallocate memory in your initialization code, so that your interrupt handler can avoid heap allocations. I'll assume that the elements you're storing in these containers do not themselves perform any heap allocations, because that would complicate the answer.</p>
<p>You can preallocate memory for <code>std::vector</code> by calling the <code>reserve()</code> method. Methods like <code>push_back()</code>, <code>pop()</code>, <code>insert()</code>, and <code>erase()</code> manipulate the vector's size (the number of elements it currently contains). They only affect the capacity (the number of elements it has room for) when the new size is larger than the current capacity. <code>reserve(x)</code> ensures that the capacity is greater or equal to <code>x</code>, increasing the capacity if necessary. (Also note that the only operation that ever decreases a vector's capacity is <code>swap()</code>, so you don't have to worry about <code>erase()</code> reducing the vector's capacity.)</p>
<p>This approach won't work for <code>std::list</code>, but there's another approach that will: preallocate list elements by inserting them into a "spare" list. Instead of inserting new elements, use the <code>splice()</code> method to move them from the "spare" list to the "primary" list. Instead of erasing elements, use the <code>splice()</code> method to move them from the "primary" list to the "spare" list. </p>
http://stackoverflow.com/questions/1116751/overlapped-serial-port-and-blue-screen-of-death/1116987#11169873Answer by bk1e for Overlapped serial port and Blue Screen of Death...bk1e2009-07-12T21:34:38Z2009-07-12T21:34:38Z<p>An application running as a standard user should never be able to cause a bug check (a.k.a. BSOD). (And an application running as an Administrator should have to go well out of its way to do so.) Either you ran into a driver bug or you have bad hardware. </p>
<p>By default, Windows is configured to save a minidump in <code>%SystemRoot%\minidump</code> whenever a bug check occurs. You may be able to determine more information about the crash by loading the minidump file in <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">WinDbg</a>, configuring WinDbg to use the Microsoft public symbol store, and running the <code>!analyze -v</code> command in WinDbg. At the very least, this should identify what driver is probably at fault (though I would guess it's your modem driver).</p>
http://stackoverflow.com/questions/1061387/why-do-we-use-type-var-instead-of-type-var-when-defining-a-pointer/1061913#10619132Answer by bk1e for Why do we use "type * var" instead of "type & var" when defining a pointer?bk1e2009-06-30T05:46:49Z2009-06-30T05:46:49Z<p>I think that Dennis Ritchie answered this in <strong><a href="http://cm.bell-labs.com/cm/cs/who/dmr/chist.html" rel="nofollow">The Development of the C Language</a></strong>:</p>
<blockquote>
<p>For each object of such a composed
type, there was already a way to
mention the underlying object: index
the array, call the function, use the
indirection operator on the pointer.
Analogical reasoning led to a
declaration syntax for names mirroring
that of the expression syntax in which
the names typically appear. Thus,</p>
<pre><code>int i, *pi, **ppi;
</code></pre>
<p>declare an integer, a pointer to an
integer, a pointer to a pointer to an
integer. The syntax of these
declarations reflects the observation
that i, *pi, and **ppi all yield an
int type when used in an expression.
Similarly,</p>
<pre><code>int f(), *f(), (*f)();
</code></pre>
<p>declare a function returning an
integer, a function returning a
pointer to an integer, a pointer to a
function returning an integer;</p>
<pre><code>int *api[10], (*pai)[10];
</code></pre>
<p>declare an array of pointers to
integers, and a pointer to an array of
integers. In all these cases the
declaration of a variable resembles
its usage in an expression whose type
is the one named at the head of the
declaration.</p>
</blockquote>
<p>So we use <code>type * var</code> to declare a pointer because this allows the declaration to mirror the usage (dereferencing) of the pointer.</p>
<p>In this article, Ritchie also recounts that in "NB", an extended version of the "B" programming language, he used <code>int pointer[]</code> to declare a pointer to an <code>int</code>, as opposed to <code>int array[10]</code> to declare an array of <code>int</code>s.</p>
http://stackoverflow.com/questions/1049909/vc-doesnt-detect-newly-created-env-variable-using-getenvironmentvariable/1052695#10526951Answer by bk1e for VC++ doesn't detect newly created env variable using GetEnvironmentVariable bk1e2009-06-27T11:40:51Z2009-06-27T11:46:23Z<p>It all depends on how you set the environment variable:</p>
<ul>
<li><p>If you ran <code>set MY_ENV_NAME=val</code> in a command prompt, then you have set <code>MY_ENV_NAME</code> for that instance of <code>cmd.exe</code> and any child processes it executes in the future. The environment of existing child processes is not modified.</p>
<p>In this case, exiting the Visual Studio IDE and starting it from the command line (not Explorer) should cause it and its child processes to see the new environment variable.</p></li>
<li><p>If you used the System or Users control panel or the <code>setx</code> command to set <code>MY_ENV_NAME</code>, then you have set <code>MY_ENV_NAME</code> persistently, and it will be set for all processes after you reboot your computer. In addition, you may find that some processes, such as Explorer, pick up the environment variable change immediately.</p>
<p>This works by storing the new environment variable in the registry under <code>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment</code> or <code>HKEY_CURRENT_USER\Environment</code>, depending on whether you chose to set a system environment variable or a per-user environment variable. Existing processes are notified that there was an environment variable change by <a href="http://msdn.microsoft.com/en-us/library/ms725497%28VS.85%29.aspx" rel="nofollow">broadcasting the <code>WM_SETTINGCHANGE</code> message with <code>lParam=="Environment"</code></a>. This message causes them to re-read the persistent environment variables from the registry if they know how. <a href="http://support.microsoft.com/kb/104011" rel="nofollow">KB104011</a> has more details.</p>
<p>As a result, if you use the System or Users control panel to set a new environment variable, exiting the Visual Studio IDE and starting it again from Explorer (not a command prompt) should cause it and its child processes to see the new environment variable.</p></li>
</ul>
http://stackoverflow.com/questions/1034587/how-does-xpg42-and-other-defines-work-on-solaris/1042511#10425111Answer by bk1e for How does _XPG4_2 and other defines work on Solaris?bk1e2009-06-25T07:02:47Z2009-06-25T07:02:47Z<p><code>man -k XPG4</code> reveals that there is a <code>standards(5)</code> man page, which lists the feature test macros and library linking info for various standards, including the following:</p>
<blockquote>
<p>X/Open CAE
To build or compile an application that conforms to one of
the X/Open CAE specifications, use the following guidelines.
Applications need not set the POSIX feature test macros if
they require both CAE and POSIX functionality.</p>
<pre><code> SUS (XPG4v2)
The application must define _XOPEN_SOURCE with a value
other than 500 (preferably 1) and set
_XOPEN_SOURCE_EXTENDED=1.
</code></pre>
</blockquote>
<p>Grepping through <code>/usr/include</code> for <code>_XOPEN_SOURCE</code> turns more information in <code>/usr/include/sys/feature_tests.h</code>:</p>
<blockquote>
<p>application writers wishing to use any functions specified as X/Open UNIX Extension must define <code>_XOPEN_SOURCE</code> and <code>_XOPEN_SOURCE_EXTENDED=1</code>. The Sun internal macro <code>_XPG4_2</code> should not be used in its place as unexpected results may occur.</p>
</blockquote>
<p>So defining <code>_XPG4_2</code> yourself is not the way to do it.</p>
<p>If any structure definitions depend on these macros, you would definitely be better off defining them in all translation units. The easiest way to do that is to specify them on the compiler command line: </p>
<pre><code>cc -D_XOPEN_SOURCE=1 -D_XOPEN_SOURCE_EXTENDED=1
</code></pre>
<p>If you're using <code>make</code>, you should be able to do this by adding the <code>-D</code> parameters to the <code>CFLAGS</code> variable:</p>
<pre><code>CFLAGS += -D_XOPEN_SOURCE=1 -D_XOPEN_SOURCE_EXTENDED=1
</code></pre>
http://stackoverflow.com/questions/1034045/how-much-memory-should-you-be-able-to-allocate/1034276#10342761Answer by bk1e for How much memory should you be able to allocate?bk1e2009-06-23T18:23:21Z2009-06-23T18:23:21Z<p><a href="http://technet.microsoft.com/en-us/sysinternals/dd535533.aspx" rel="nofollow">Sysinternals VMMap</a> is great for investigating virtual address space fragmentation, which is probably limiting how much contiguous memory you can allocate. I recommend setting it to display free space, then sorting by size to find the largest free areas, then sorting by address to see what is separating the largest free areas (probably rebased DLLs, shared memory regions, or other heaps). </p>
<p>Avoiding extremely large contiguous allocations is probably for the best, as others have suggested. </p>
<p>Setting <code>LARGE_ADDRESS_AWARE=YES</code> (as jalf suggested) is good, as long as the libraries that your application depends on are compatible with it. If you do so, you should test your code with the <a href="http://msdn.microsoft.com/en-us/library/bb613473%28VS.85%29.aspx" rel="nofollow"><code>AllocationPreference</code></a> registry key set to enable top-down virtual address allocation.</p>
http://stackoverflow.com/questions/1025077/visual-studio-release-build/1025111#10251111Answer by bk1e for Visual studio release buildbk1e2009-06-22T00:16:24Z2009-06-22T00:26:09Z<p>One possibility is that your program <strong>uses uninitialized heap data</strong>. Launching a program from the debugger enables the NT debug heap, which causes the heap allocator to fill new memory blocks with a fill pattern, and also enables some heap checking. Launching the same program from outside the debugger leaves the NT debug heap disabled, but if the program was linked against the debug version of the C runtime, then the CRT debug heap will still be enabled.</p>
<p>A much less likely possibility is that your program <strong>requires <a href="http://msdn.microsoft.com/en-us/library/bb530716%28VS.85%29.aspx" rel="nofollow"><code>SeDebugPrivilege</code></a> to be set in its process token</strong>. The debugger enables this privilege in its process token, which has the side effect that all programs launched from the debugger inherit this privilege. If your program tries to use <code>OpenProcess()</code>/<code>ReadProcessMemory()</code>/<code>WriteProcessMemory()</code> and doesn't handle errors correctly, it's conceivable that it could crash.</p>
http://stackoverflow.com/questions/1018550/when-to-make-a-object-delete-itself/1019279#10192791Answer by bk1e for When to make a object delete itself?bk1e2009-06-19T18:04:55Z2009-06-19T18:04:55Z<p>If your code is as simple as what you have written, and <code>func()</code> directly calls the callback at some point, then this should be sufficient:</p>
<pre><code>Callback p;
func(&p);
</code></pre>
<p>However, if <code>func()</code> saves a reference or pointer to the callback elsewhere, you need to keep track of the lifetime of that reference.</p>
http://stackoverflow.com/questions/983244/is-this-deallocation-correct-c/991217#9912170Answer by bk1e for Is this deallocation correct? (c++)bk1e2009-06-13T18:22:52Z2009-06-13T18:22:52Z<p>The array of pointers may be unnecessary. You could just allocate the 1D array of 9 elements and do the math to convert 2D indexes to 1D indexes.</p>
<p>In addition to swapping around the <code>delete[]</code> operations, you should consider what happens when an allocation fails. If the second allocation throws <code>std::bad_alloc</code>, your program leaks the memory from the first allocation. A correctly-written matrix class (as suggested by Fred Larson) would handle memory deallocation for you.</p>
http://stackoverflow.com/questions/989848/is-the-linked-list-only-of-limited-use/991123#9911231Answer by bk1e for Is the linked list only of limited use?bk1e2009-06-13T17:35:04Z2009-06-13T17:35:04Z<p><code>std::list</code> is notable for its <code>splice()</code> method, which allows you to move one more more elements from one list to another in constant time, without copying or allocating any elements or list nodes.</p>
http://stackoverflow.com/questions/958841/unit-testing-patterns-for-microcontroller-c-code/958866#9588661Answer by bk1e for Unit testing patterns for microcontroller C codebk1e2009-06-06T02:32:19Z2009-06-06T02:32:19Z<p>Write mock versions of your register access functions/macros. Note that this assumes that your code uses a common set of register access functions, and not ad-hoc stuff like <code>*(volatile int*)0xDEADBEEF = 0xBADF00D</code> everywhere.</p>
<p>Call your interrupt handlers directly from your test code (may be problematic on some architectures¹), a "software interrupt" if available, or from a timer interrupt handler if you need them to execute asynchronously. This may require wrapping your interrupt enable/disable code in functions/macros that you can mock up.</p>
<p>¹ 8051 comes to mind: at least with the Keil 8051 compiler, you can't call interrupt functions directly. This could be worked out with the C preprocessor though.</p>
http://stackoverflow.com/questions/941032/how-do-i-stop-a-c-application-during-execution-to-debug-into-a-dll/949135#9491350Answer by bk1e for how do I stop a C++ application during execution to debug into a dll?bk1e2009-06-04T07:51:24Z2009-06-04T07:51:24Z<blockquote>
<p>I've tried doing a 'set target
application' deal, where I set the
application that the dll will be
called from, and the application
crashes a horrible, horrible death
when called that way. I don't know if
the fault lies with this dll or with
the executable for that behavior, and
it's just one of the myriad things I'd
like to solve.</p>
</blockquote>
<p>Starting a process inside the debugger causes Windows to enable the <a href="http://msdn.microsoft.com/en-us/library/cc266414.aspx" rel="nofollow">NT debug heap</a>. It sounds like the application or DLL has heap corruption or relies on the value of uninitialized heap memory.</p>
<p>You can disable the NT debug heap by setting the environment variable <code>_NO_DEBUG_HEAP</code> to 1 (on XP and later). This may make it possible to get the application to not die a horrible death when started from the debugger.</p>
<p>Starting the application outside the debugger will also result in the NT debug heap being disabled, and attaching a debugger later will not enable it.</p>
http://stackoverflow.com/questions/941832/is-it-safe-to-delete-a-void-pointer/949090#9490902Answer by bk1e for Is it safe to delete a void pointer?bk1e2009-06-04T07:34:10Z2009-06-04T07:34:10Z<p>If you really must do this, why not cut out the middle man (the <code>new</code> and <code>delete</code> operators) and call the global <code>operator new</code> and <code>operator delete</code> directly? (Of course, if you're trying to instrument the <code>new</code> and <code>delete</code> operators, you actually ought to reimplement <code>operator new</code> and <code>operator delete</code>.)</p>
<pre><code>void* my_alloc (size_t size)
{
return ::operator new(size);
}
void my_free (void* ptr)
{
::operator delete(ptr);
}
</code></pre>
<p>Note that unlike <code>malloc()</code>, <code>operator new</code> throws <code>std::bad_alloc</code> on failure (or calls the <code>new_handler</code> if one is registered).</p>
http://stackoverflow.com/questions/936799/determining-what-object-files-have-caused-dll-size-increase-c/940887#9408870Answer by bk1e for Determining what object files have caused .dll size increase [C++]bk1e2009-06-02T17:39:49Z2009-06-02T17:39:49Z<p>keysersoze's answer (compare the output of <code>objdump</code> or <code>dumpbin</code>) is correct. Another approach is to tell the linker to produce a map file, and compare the map files for the old and new versions of the DLL.</p>
<ul>
<li>MSVC: <code>link.exe</code> <a href="http://msdn.microsoft.com/en-us/library/k7xkk3e2.aspx" rel="nofollow"><code>/MAP</code></a></li>
<li>GCC and binutils: <code>ld</code> <a href="http://sourceware.org/binutils/docs-2.19/ld/Options.html#index-g%5Ft%5F002d%5F002dprint%5F002dmap-62" rel="nofollow"><code>-M</code></a> (or <code>gcc -Wl,-M</code>)</li>
</ul>
http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/924645#9246450Answer by bk1e for What's Your Biggest Visual Studio 2008 Annoyance?bk1e2009-05-29T06:20:21Z2009-05-29T06:20:21Z<p><strong>Debug CRT Deployment</strong>: Installing the debug C runtime (<code>msvcr90d.dll</code>) on test systems is far more complicated than it needs to be. I usually would prefer to use a <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">lighter weight debugger</a>, and adding Visual Studio 2008 to test system images takes a lot more space and imaging time.</p>
<ul>
<li>Microsoft does not distribute a standalone installer for the debug CRT. (However, it is possible to create a debug CRT installer using Visual Studio.)</li>
<li>Copying the debug CRT to <code>%SystemRoot%\system32</code> does not work, due to WinSxS (except on Windows 2000).</li>
<li>Copying the debug CRT to your application's directory (a.k.a. <code>xcopy</code> deployment) works, assuming that you are debugging an application that has its own directory. This does not work if you're debugging a DLL installed in <code>%SystemRoot%\system32</code>.</li>
</ul>
http://stackoverflow.com/questions/1704165/is-there-a-way-to-improve-the-speed-or-efficiency-of-this-lookup-c-cComment by bk1e on Is there a way to improve the speed or efficiency of this lookup? (C/C++)bk1e2009-11-09T22:34:56Z2009-11-09T22:34:56Z@sbi: But it's so much fun to try to optimize an infinite loop.http://stackoverflow.com/questions/1693634/undefined-symbols-vtable-for-and-typeinfo-for/1693694#1693694Comment by bk1e on Undefined symbols "vtable for ..." and "typeinfo for..." ?bk1e2009-11-07T17:30:19Z2009-11-07T17:30:19Z@Lisa: not necessarily, but defining non-inline non-template methods/functions in a .h file is likely to lead to a different linker error (multiple definitions). So I'll assume that everything in Obstacle is inline. Did you write definitions for all of Obstacle's member functions, including the constructor(s) and destructor? Note that if Obstacle has a pure virtual destructor, you are still required to write a definition for it.http://stackoverflow.com/questions/1693089/fastest-way-to-write-large-stl-vector-to-file-using-stl/1693505#1693505Comment by bk1e on Fastest way to write large STL vector to file using STLbk1e2009-11-07T17:09:26Z2009-11-07T17:09:26Zstd::vector doesn't have a data() method. You can use &vs.front() instead, assuming that the vector is not empty.http://stackoverflow.com/questions/1655960/what-are-the-most-surprising-elements-of-the-c-standard/1656153#1656153Comment by bk1e on What are the most surprising elements of the C++ standard?bk1e2009-11-01T17:31:42Z2009-11-01T17:31:42ZI find it surprising how many people program in C++ that do not know that you can delete null pointers.http://stackoverflow.com/questions/1639154/how-to-declare-a-static-const-char-in-your-header-fileComment by bk1e on How to declare a static const char* in your header file?bk1e2009-10-28T18:54:36Z2009-10-28T18:54:36ZYou should use "static const char* const SOMETHING" instead, unless you really want to be able to reassign SOMETHING to point at something else at runtime.http://stackoverflow.com/questions/1632145/use-of-min-and-max-functions-in-c/1632190#1632190Comment by bk1e on Use of min and max functions in C++bk1e2009-10-28T02:00:35Z2009-10-28T02:00:35Z@Rob Kennedy: <a href="http://en.wikipedia.org/wiki/Argument_dependent_name_lookup" rel="nofollow">en.wikipedia.org/wiki/…</a>http://stackoverflow.com/questions/1632145/use-of-min-and-max-functions-in-c/1632175#1632175Comment by bk1e on Use of min and max functions in C++bk1e2009-10-28T01:59:05Z2009-10-28T01:59:05ZAre there any platforms with 64-bit ints (ILP64) and 64-bit doubles? On those platforms, converting from int to double would result in a loss of precision for extremely positive/negative ints.http://stackoverflow.com/questions/1634443/include-header-style/1634459#1634459Comment by bk1e on #include header stylebk1e2009-10-28T01:40:27Z2009-10-28T01:40:27ZAlso true: "C++ can cause compile times to explode"http://stackoverflow.com/questions/1471109/c-c-libraries-for-reading-from-universal-disk-format-devices-or-files/1475657#1475657Comment by bk1e on C/C++ Libraries for reading from Universal Disk Format devices or filesbk1e2009-10-26T17:51:42Z2009-10-26T17:51:42Z@Anacrolix: The COM component it uses is part of the 7-Zip source tree.http://stackoverflow.com/questions/1601261/marking-standard-functions-as-deprecated-unusable/1601401#1601401Comment by bk1e on Marking standard functions as deprecated/unusablebk1e2009-10-22T06:50:28Z2009-10-22T06:50:28ZDo you have to make sure that you don't include any standard headers after using the poison pragma? Or does it only error for function calls and not declarations?http://stackoverflow.com/questions/1582877/how-to-find-free-memory-within-a-specific-address-range/1582918#1582918Comment by bk1e on How to find free memory within a specific address range.bk1e2009-10-17T22:57:07Z2009-10-17T22:57:07ZIf an INT3 falls in the forest without a debugger there to hear it...http://stackoverflow.com/questions/1567730/inheritance-and-templates-in-c-why-are-methods-invisibleComment by bk1e on Inheritance and templates in C++ - why are methods invisible?bk1e2009-10-14T19:24:14Z2009-10-14T19:24:14Z@OldCoder: When you're asking a question about an error, you should post the error message.http://stackoverflow.com/questions/1481382/runtime-error-sigsegvComment by bk1e on runtime error (SIGSEGV)bk1e2009-09-26T16:00:10Z2009-09-26T16:00:10ZWhat is "scoj"?http://stackoverflow.com/questions/1476128/can-someone-explain-this-bat-code/1478633#1478633Comment by bk1e on Can someone explain this bat code?bk1e2009-09-25T21:53:45Z2009-09-25T21:53:45ZAnother workaround is to use some undocumented functionality of the "call" command: "call set t=%%n:~0,-4%%"http://stackoverflow.com/questions/899633/c-for-8051-microcontroller/907664#907664Comment by bk1e on C++ for 8051 microcontroller?bk1e2009-09-23T17:55:23Z2009-09-23T17:55:23Z@Johann Gerell: I suspect that writing a custom STL allocator that manages strings stored in ROM would be significantly more difficult (if even possible) than rewriting the string processing in C. Keep in mind that the OP's target system has only 128 bytes of RAM and 4 KB of flash. That means that the lookup tables must be stored in flash.