User MSN - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T15:10:48Zhttp://stackoverflow.com/feeds/user/6210http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931271#19312711Answer by MSN for Is it good practice to NULL a pointer after deleting it?MSN2009-12-18T23:26:47Z2009-12-18T23:26:47Z<p>If you have no other constraint that forces you to either set or not set the pointer to NULL after you delete it (one such constraint was mentioned by <a href="http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931149#1931149">Neil Butterworth</a>), then my personal preference is to leave it be.</p>
<p>For me, the question isn't "is this a good idea?" but "what behavior would I prevent or allow to succeed by doing this?" For example, if this allows other code to see that the pointer is no longer available, why is other code even attempting to look at freed pointers after they are freed? Usually, it's a bug.</p>
<p>It also does more work than necessary as well as hindering post-mortem debugging. The less you touch memory after you don't need it, the easier it is to figure out why something crashed. Many times I have relied on the fact that memory is in a similar state to when a particular bug occurred to diagnose and fix said bug.</p>
http://stackoverflow.com/questions/1911561/resize-a-file-down/1911593#19115933Answer by MSN for Resize a file (down)MSN2009-12-16T00:58:26Z2009-12-16T00:58:26Z<p>"net helpmsg 1224" -> The requested operation cannot be performed on a file with a user-mapped section open.</p>
<p>And from MSDN for <a href="http://msdn.microsoft.com/en-us/library/aa365531%28VS.85%29.aspx" rel="nofollow"><code>SetEndOfFile</code></a>: </p>
<blockquote>
<p>If CreateFileMapping is called to
create a file mapping object for
hFile, UnmapViewOfFile must be called
first to unmap all views and call
CloseHandle to close the file mapping
object before you can call
SetEndOfFile.</p>
</blockquote>
http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1911057#19110570Answer by MSN for Can using 0L to initialize a pointer in C++ cause problems?MSN2009-12-15T22:57:39Z2009-12-15T22:57:39Z<p>You can use <code>false</code>, <code>0</code>, <code>0l</code>, <code>0L</code>, <code>0ul</code>, <code>0u</code>, <code>00</code>, or any number of ways to represent the literal zero. The literal zero is basically a magical symbol that happens to also correspond to a null pointer constant.</p>
<p>If we were talking about a value that happens to be bitwise zero and the code were memcpy-ing it over the pointer, then we would have the problems mentioned above.</p>
<p>Bonus question: What types have a null pointer constant that isn't bitwise zero?</p>
http://stackoverflow.com/questions/1910715/how-do-i-find-out-if-there-is-data-available-to-be-read-from-a-socket-in-boosta/1911023#19110230Answer by MSN for How do I find out if there is data available to be read from a socket in boost::asio?MSN2009-12-15T22:51:29Z2009-12-15T22:51:29Z<p>From glancing at the <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/boost%5Fasio/reference/socket%5Fbase/bytes%5Freadable.html" rel="nofollow">documentation</a>, I'll go with <code>socket_base::bytes_readable</code>, as in:</p>
<pre><code>boost::asio::ip::tcp::socket socket(io_service);
...
boost::asio::socket_base::bytes_readable command(true);
socket.io_control(command);
std::size_t bytes_readable = command.get();
</code></pre>
http://stackoverflow.com/questions/1882070/find-out-if-a-function-is-called-within-a-c-project/1884830#18848302Answer by MSN for Find out if a function is called within a C++ project?MSN2009-12-10T23:24:48Z2009-12-10T23:24:48Z<p>Use <code>__declspec(deprecated)</code> in front of the function declaration you want to get rid of. That will throw up compile warnings if that function is actually used at compile time.</p>
http://stackoverflow.com/questions/1883894/dynamically-loading-registry-function-on-windows-7/1884823#18848232Answer by MSN for Dynamically loading registry function on Windows 7?MSN2009-12-10T23:23:34Z2009-12-10T23:23:34Z<p>You might want to specify the correct version when you call <code>GetProcAddress</code>, i.e., A for ANSI and W for UNICODE.</p>
http://stackoverflow.com/questions/1860955/why-does-unspecifiedbool-for-classes-which-have-intrinsic-conversions-to-their/1861857#18618570Answer by MSN for Why does 'unspecified_bool' for classes which have intrinsic conversions to their wrappered type fail?MSN2009-12-07T18:14:53Z2009-12-07T18:14:53Z<p>The ambiguity comes from having two possible conversion operators; either: </p>
<pre><code>operator handle_t () const;
operator unspecified_bool_type() const;
</code></pre>
<p>or:</p>
<pre><code>operator handle_t () const;
operator bool () const;
</code></pre>
<p>Both can be used in a boolean expression, so you have ambiguity.</p>
http://stackoverflow.com/questions/1847053/how-to-get-address-of-base-stack-pointer/1850101#18501010Answer by MSN for How to get address of base stack pointerMSN2009-12-04T22:34:29Z2009-12-05T18:50:49Z<p>You can use the <code>_AddressOfReturnAddress()</code> intrinsic to determine a location in the current frame pointer, assuming it hasn't been completely optimized away. I'm assuming that the compiler will prevent that function from optimizing away the frame pointer if you explicitly refer to it. Or, if you only use a single thread, you can use the <code>IMAGE_NT_HEADER.OptionalHeader.SizeOfStackReserve</code> and <code>IMAGE_NT_HEADER.OptionalHeader.SizeOfStackCommit</code> to determine the main thread's stack size. See <a href="http://blogs.msdn.com/oldnewthing/archive/2006/09/27/773741.aspx" rel="nofollow">this</a> for how to access the <code>IMAGE_NT_HEADER</code> for the current image.</p>
<p>I would also recommend against using <code>IsBadWritePtr</code> to determine the end of the stack. At the very least you will probably cause the stack to grow until you hit the reserve, as you'll trip a guard page. If you really want to find the current size of the stack, use <code>VirtualQuery</code> with the address you are checking.</p>
<p>And if the original use is to walk the stack, you can use <code>StackWalk64</code> for that. </p>
http://stackoverflow.com/questions/1848881/lseek-function-problem-in-a-copy-file-program/1850063#18500630Answer by MSN for lseek function problem in a copy file program!MSN2009-12-04T22:25:07Z2009-12-04T22:25:07Z<p>You are missing the equivalent of <code>strrev(...)</code> in there to reverse the string you write out as well starting from the end of the source file and reading backwards or writing from the end of the target file back to the beginning.</p>
<p>The actual implementation is left as an exercise to the reader.</p>
http://stackoverflow.com/questions/1777184/simulating-a-keypress-and-keyrelease-in-another-application/1777289#17772890Answer by MSN for Simulating a keypress AND keyrelease in another application?MSN2009-11-22T00:23:25Z2009-11-22T00:23:25Z<p>The official API is <a href="http://msdn.microsoft.com/en-us/library/ms646310%28VS.85%29.aspx" rel="nofollow"><code>SendInput</code></a>. </p>
http://stackoverflow.com/questions/1763322/is-there-any-way-that-enter-leavecriticalsection-could-leave-a-handle-behind/1764960#17649603Answer by MSN for Is there any way that Enter/LeaveCriticalSection could leave a handle behindMSN2009-11-19T17:11:36Z2009-11-19T17:11:36Z<p>If you don't explicitly delete the critical section and if there was ever contention on the critical section, you will leak a handle. Some implementations of critical sections on Windows allocate a semaphore when two or more threads overlap in their attempts to enter a single critical section.</p>
<p>It's not a leak. Or rather, it isn't a leak if the number of "leaked" handles is less than or equal to the number of global critical sections you are using.</p>
http://stackoverflow.com/questions/1764680/can-i-extract-c-template-arguments-out-of-a-template-class/1764888#17648882Answer by MSN for Can I extract C++ template arguments out of a template class? MSN2009-11-19T17:03:24Z2009-11-19T17:03:24Z<pre><code>template <class T> void extract_type(Holder<T>)
{
printf("%s\n", typeid(T).name());
}
</code></pre>
<p>I'm assuming though that you want to use that in a non-templated function. That's a bit more difficult:</p>
<pre><code>template <class T> class GetValue;
template <class T> class GetValue<Holder<T> >
{
public:
typedef T value_type;
};
</code></pre>
<p>The magic google words are "partial template specialization"</p>
http://stackoverflow.com/questions/1757093/obtain-the-true-name-of-the-currently-select-file-in-the-common-file-dialog/1759679#17596791Answer by MSN for Obtain the true name of the currently select file in the common file dialog?MSN2009-11-18T22:41:16Z2009-11-18T22:41:16Z<p>Ah, I found it. You'll want to use <a href="http://weblogs.asp.net/kennykerr/archive/2006/11/10/Windows-Vista-for-Developers-%5F1320%5F-Part-6-%5F1320%5F-The-New-File-Dialogs.aspx" rel="nofollow"><code>IFileOpenDialog</code></a> for Vista, which should explicilty support all those operations you mentioned.</p>
http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1759552#17595520Answer by MSN for Interlocked and Memory BarriersMSN2009-11-18T22:18:28Z2009-11-18T22:18:28Z<p>If you don't tell the compiler or runtime that <code>m_value</code> should not be read ahead of Bar(), it can and may cache the value of <code>m_value</code> ahead of <code>Bar()</code> and simply use the cached value. If you want to ensure that it sees the "latest" version of <code>m_value</code>, either shove in a <code>Thread.MemoryBarrier()</code> or use <code>Thread.VolatileRead(ref m_value)</code>. The latter is less expensive than a full memory barrier.</p>
<p>Ideally you could shove in a ReadBarrier, but the CLR doesn't seem to support that directly.</p>
<p>EDIT: Another way to think about it is that there are really two kinds of memory barriers: compiler memory barriers that tell the compiler how to sequence reads and writes and CPU memory barriers that tell the CPU how to sequence reads and writes. The <code>Interlocked</code> functions use CPU memory barriers. Even if the compiler treated them as compiler memory barriers, it still wouldn't matter, as in this specific case, <code>Bar()</code> could have been separately compiled and not known of the other uses of <code>m_value</code> that would require a compiler memory barrier.</p>
http://stackoverflow.com/questions/1750343/fastest-way-to-search-1gb-a-string-of-data-for-the-first-occurence-of-a-pattern/1750381#17503810Answer by MSN for Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python.MSN2009-11-17T17:18:54Z2009-11-17T17:18:54Z<p>With infinite memory, you can hash every 1k string along with its position in the 1 GB file.</p>
<p>With less than infinite memory, you will be bounded by how many memory pages you touch when searching.</p>
http://stackoverflow.com/questions/1735403/how-does-memory-fences-affect-freshness-of-data/1739402#17394020Answer by MSN for How does memory fences affect "freshness" of data?MSN2009-11-16T00:09:04Z2009-11-16T00:09:04Z<p>The "freshness" guarantee simply means that Barriers 2 and 3 force the values of <code>_complete</code> to be visible as soon as possible as opposed to whenever they happen to be written to memory.</p>
<p>It's actually unnecessary from a consistency point of view, since Barriers 1 and 4 ensure that <code>answer</code> will be read after reading <code>complete</code>.</p>
http://stackoverflow.com/questions/1738180/copying-from-double-pointer-to-int-array-is-this-correct/1738198#17381981Answer by MSN for Copying from double pointer to int array. Is this correct?MSN2009-11-15T17:34:08Z2009-11-15T17:34:08Z<p>The samples probably need to be scaled from [-1,1] to [min, max], where min and max are minimum and maximum integer values for integer samples.</p>
http://stackoverflow.com/questions/1730761/memory-barriers-and-large-structs/1732820#17328201Answer by MSN for Memory barriers and large structs?MSN2009-11-14T00:49:52Z2009-11-14T00:49:52Z<p>Clearly the answer is <strong>no</strong>, or rather, you have no guarantees about anything. Nothing prevents the operating system from swapping out the thread that is writing to the 100 byte struct before starting the thread that prints out the 100 byte struct.</p>
<p>A memory barrier is used when you want to coordinate access to data through a flag or some other atomic value. I don't know what exactly you are trying to do, so I can't give you good example code about how you should do it.</p>
http://stackoverflow.com/questions/75538/hidden-features-of-c/76606#7660619Answer by MSN for Hidden Features of C++?MSN2008-09-16T20:27:20Z2009-10-15T15:47:23Z<p>Lifetime of temporaries bound to const references is one that few people know about. Or at least it's my favorite piece of C++ knowledge that most people don't know about.</p>
<pre><code>const MyClass& x = MyClass(); // temporary exists as long as x is in scope
</code></pre>
<p>MSN</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/425338#4253384Answer by MSN for What's your favorite "programmer ignorance" pet peeve?MSN2009-01-08T18:35:04Z2009-09-24T00:46:58Z<p>The power of Google. Or Find in Files.</p>
http://stackoverflow.com/questions/1450896/defragmenting-c-heap-allocator-stl/1452348#14523480Answer by MSN for Defragmenting C++ Heap Allocator & STLMSN2009-09-20T23:46:57Z2009-09-20T23:46:57Z<p>If this is for console game programming it's a lot easier to forbid un-scoped dynamic memory allocations at runtime. And at startup time, but that's a bit difficult to achieve.</p>
http://stackoverflow.com/questions/1430061/how-to-compare-two-bstrs-or-ccombstrs/1430084#14300842Answer by MSN for How to compare two BSTRs or CComBSTRs?MSN2009-09-15T23:02:49Z2009-09-15T23:02:49Z<p>You should probably use <a href="http://msdn.microsoft.com/en-us/library/ms221038.aspx" rel="nofollow"><code>VarBstrCmp</code></a>.</p>
<p>EDIT: this is actually what <code>CComBSTR::operator==</code> does, so without further context, your code may be incorrect.</p>
http://stackoverflow.com/questions/1427197/xaudio2-and-variable-bitrate-audio/1429070#14290701Answer by MSN for XAudio2 and variable bitrate audioMSN2009-09-15T19:06:43Z2009-09-15T19:06:43Z<p>Unless I'm high, no audio format specifies variable <strong>output</strong> bitrate or variable number of <strong>output</strong> channels. A variable bitrate codec means that the number of bits used to encode a fixed number of samples varies. Vorbis allows for dynamically encoding the channels as well for channels that can be reproduced with simpler functions such as silence. The number of output channels remains constant, as well as the output bitrate.</p>
<p>Also, XAudio2 does not natively support ogg/vorbis files; it supports PCM, ADPCM, and xWMA on Windows and PCM, XMA, and xWMA on Xbox 360.</p>
<p>In general, for non-native formats, you have to decompress the audio yourself into the appropriate <strong>output</strong> bitrate and channel format and send that to an <code>IXAudio2SourceVoice</code> via <code>IXAudio2SourceVoice::SubmitSourceBuffer</code>.</p>
http://stackoverflow.com/questions/1414215/initial-value-of-int-array-in-c/1414233#14142334Answer by MSN for initial value of int array in CMSN2009-09-12T03:58:35Z2009-09-12T03:58:35Z<p>According to the C standard, 6.7.8 (note 10):</p>
<blockquote>
<p>If an object that has automatic
storage duration is not initialized
explicitly, its value is
indeterminate.</p>
</blockquote>
<p>So it depends on the compiler. With MSVC, debug builds will initialize automatic variables with 0xcc, whereas non-debug builds will not initialize those variables at all.</p>
http://stackoverflow.com/questions/1376035/c-segmentation-fault-problem/1376387#13763871Answer by MSN for C++ segmentation-fault problemMSN2009-09-03T22:54:48Z2009-09-03T22:54:48Z<blockquote>
<p><code>fragments[i][j] == dictionary[k][j]</code></p>
</blockquote>
<p>You should make sure <code>dictionary[k].size()>j</code> before you attempt to dereference <code>dictionary[k][j]</code>.</p>
http://stackoverflow.com/questions/1375210/how-to-track-keyboard-input-and-bypass-sendinput/1376141#13761412Answer by MSN for How to track keyboard input and bypass SendInputMSN2009-09-03T21:45:45Z2009-09-03T21:45:45Z<p>Set a hook with <code>SetWindowsHookEx</code> with the type <a href="http://msdn.microsoft.com/en-us/library/ms644985%28VS.85%29.aspx" rel="nofollow"><code>WH_KEYBOARD_LL</code></a>. Your callback can inspect the <code>KBDLLHOOKSTRUCT::flags</code> field. If it has the <code>LLKHF_INJECTED</code> flag set, then it's from <code>SentInput</code> or <code>keybd_event</code>. Otherwise, it's from the local keyboard driver.</p>
http://stackoverflow.com/questions/1371996/incomprehensible-time-consumed-in-using-memory-mapped-file/1374504#13745041Answer by MSN for incomprehensible time consumed in using memory mapped fileMSN2009-09-03T16:28:19Z2009-09-03T16:28:19Z<p>How fragmented is the file you are comparing with? You can use <a href="http://msdn.microsoft.com/en-us/library/aa364572%28VS.85%29.aspx" rel="nofollow"><code>FSCTL_GET_RETRIEVAL_POINTERS</code></a> to get the ranges that the file maps to on disk. I suspect the last 25 MB will have a lot of small ranges to account for the performance you have measured.</p>
http://stackoverflow.com/questions/1374372/how-to-quickly-find-maximal-element-of-a-sum-of-vectors/1374423#13744230Answer by MSN for How to quickly find maximal element of a sum of vectors?MSN2009-09-03T16:14:51Z2009-09-03T16:14:51Z<p>You can't really get that much faster than that without additional information about the data (values) stored in <code>a</code>, <code>b</code>, <code>c</code>, <code>d</code>, and <code>e</code>. You have to inspect every sum to determine which one is the greatest.</p>
<p>It get's a little worse for Nth element queries, but fortunately, you didn't ask that one.</p>
http://stackoverflow.com/questions/1370349/extract-min-implemetation-for-heap-in-c/1370650#13706503Answer by MSN for Extract min implemetation for heap in c++MSN2009-09-02T23:13:40Z2009-09-02T23:13:40Z<p>Pass in <code>std::greater<*></code> to the <code>std::*_heap</code> functions.</p>
http://stackoverflow.com/questions/1305502/designing-efficient-c-code-for-fibers/1368792#13687922Answer by MSN for Designing efficient C++ code for fibersMSN2009-09-02T16:31:43Z2009-09-02T16:31:43Z<p>Don't? It's like a thread only with very little CRT support (unlike threads) and some hidden memory requirements like stack and registers.</p>
<p>It may make non-system code easier to write but it complicates to an unjustifiable degree.</p>
http://stackoverflow.com/questions/1883894/dynamically-loading-registry-function-on-windows-7/1884823#1884823Comment by MSN on Dynamically loading registry function on Windows 7?MSN2009-12-14T18:01:56Z2009-12-14T18:01:56ZI have no idea. Googling the error with GetProcAddress came up with nothing. Although it's also possible that the call to LoadLibrary failed instead of GetProcAddress.http://stackoverflow.com/questions/1883894/dynamically-loading-registry-function-on-windows-7/1884823#1884823Comment by MSN on Dynamically loading registry function on Windows 7?MSN2009-12-11T23:45:18Z2009-12-11T23:45:18ZAt this point I don't know why that's happening. I run Vista on x64 and I can't repro it with a 32-bit console app. (Which doesn't match your environment anyways.)http://stackoverflow.com/questions/1886096/complex-pathing-routeComment by MSN on Complex pathing routeMSN2009-12-11T06:06:56Z2009-12-11T06:06:56ZBy undefined do you mean dynamic?http://stackoverflow.com/questions/1860955/why-does-unspecifiedbool-for-classes-which-have-intrinsic-conversions-to-their/1861857#1861857Comment by MSN on Why does 'unspecified_bool' for classes which have intrinsic conversions to their wrappered type fail?MSN2009-12-07T22:20:24Z2009-12-07T22:20:24ZRight. In the second case, it's not ambiguous. I think the first one is still ambiguous, however.http://stackoverflow.com/questions/1847053/how-to-get-address-of-base-stack-pointer/1850101#1850101Comment by MSN on How to get address of base stack pointerMSN2009-12-05T06:35:42Z2009-12-05T06:35:42ZIf that's the case there's an API for that: StackWalk64.http://stackoverflow.com/questions/1003394/what-line-of-code-could-i-use-in-c-to-disable-energy-saver/1003426#1003426Comment by MSN on What line of code could I use in C++ to disable energy saver?MSN2009-11-30T18:17:26Z2009-11-30T18:17:26ZAs opposed to not working? That's what MSDN recommends.http://stackoverflow.com/questions/1777184/simulating-a-keypress-and-keyrelease-in-another-application/1777289#1777289Comment by MSN on Simulating a keypress AND keyrelease in another application?MSN2009-11-22T19:36:42Z2009-11-22T19:36:42ZGoogling C# "SendInput" got me this: <a href="http://blogs.msdn.com/robgruen/archive/2004/05/10/129221.aspx" rel="nofollow">blogs.msdn.com/robgruen/archive/…</a>http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1759552#1759552Comment by MSN on Interlocked and Memory BarriersMSN2009-11-19T21:51:08Z2009-11-19T21:51:08ZBut again, there's a difference between a processor barrier and a compiler barrier. In this particular case, you at least want a compiler barrier.http://stackoverflow.com/questions/1757093/obtain-the-true-name-of-the-currently-select-file-in-the-common-file-dialogComment by MSN on Obtain the true name of the currently select file in the common file dialog?MSN2009-11-18T17:14:14Z2009-11-18T17:14:14ZWhat's wrong with CDM_GETFILEPATH?http://stackoverflow.com/questions/1166316/what-is-the-performance-of-boostinterprocessmutex-vs-win32-native-mutexes/1166596#1166596Comment by MSN on What is the performance of boost::interprocess_mutex vs Win32 native mutexes?MSN2009-10-14T17:53:51Z2009-10-14T17:53:51ZNo kidding. That's why you might as well use a win32 mutex instead of rolling your own. Any "high-performance" cross process communication will not likely be high performance anyway.http://stackoverflow.com/questions/1429266/customizing-win32s-save-file-dialogComment by MSN on Customizing Win32's Save File DialogMSN2009-09-15T22:41:23Z2009-09-15T22:41:23ZWhy aren't you just using a custom dialog template also?http://stackoverflow.com/questions/1371996/incomprehensible-time-consumed-in-using-memory-mapped-fileComment by MSN on incomprehensible time consumed in using memory mapped fileMSN2009-09-05T06:03:12Z2009-09-05T06:03:12ZWhat happens if you compare the remainder last?http://stackoverflow.com/questions/1343346/calculate-a-vector-from-the-center-of-a-square-to-edge-based-on-radius/1343531#1343531Comment by MSN on Calculate a vector from the center of a square to edge based on radiusMSN2009-08-28T22:09:29Z2009-08-28T22:09:29Z@Pavel, if you are objecting to my use of sin and cos as individual function calls, you can either get around that with invoking a fsincos instruction directly (at least on x86) or recasting each in terms of tan or cot. I used them for the sake of clarity. I wouldn't actually do this in real life, since it's much easier just to calculate the intersection with an edge of a general polygon with a unit vector times some scale that you are determining from the center (or from any location for that matter).http://stackoverflow.com/questions/1343346/calculate-a-vector-from-the-center-of-a-square-to-edge-based-on-radius/1343531#1343531Comment by MSN on Calculate a vector from the center of a square to edge based on radiusMSN2009-08-28T20:35:53Z2009-08-28T20:35:53Z@Pavel, in your solution, x and y were the center of the rectangle. So I used that convention in my little function at the end. Anyways, it's not really that important, since you can always offset the calculations and still end up with the right result.http://stackoverflow.com/questions/1238905/what-does-cancelio-do-with-bytes-that-have-already-been-read/1297957#1297957Comment by MSN on What does CancelIo() do with bytes that have already been read?MSN2009-08-28T17:42:32Z2009-08-28T17:42:32ZIf you are doing overlapped I/O you have to explicitly pass in the offset to read from in the OVERLAPPED structure, so you can just re-run the I/O from the same offset passing in the same buffer.