ˇ@

Home 

c++ Programming Glossary: oldnewthing

Using v-table thunks to chain procedure calls

http://stackoverflow.com/questions/1090755/using-v-table-thunks-to-chain-procedure-calls

and his discussion of adjuster thunks http blogs.msdn.com oldnewthing archive 2004 02 06 68695.aspx The thunk he used was as follows..

Is C++ static member variable initialization thread-safe?

http://stackoverflow.com/questions/1962880/is-c-static-member-variable-initialization-thread-safe

safe static variables without mutexing http blogs.msdn.com oldnewthing archive 2004 03 08 85901.aspx So is following code with static..

Correct way to check if Windows is 64 bit or not, on runtime? (C++)

http://stackoverflow.com/questions/2140619/correct-way-to-check-if-windows-is-64-bit-or-not-on-runtime-c

Raymond Chen suggests in his blog at http blogs.msdn.com oldnewthing archive 2005 02 01 364563.aspx BOOL Is64BitWindows #if defined..

Exceptions silently caught by Windows, how to handle manually?

http://stackoverflow.com/questions/2622200/exceptions-silently-caught-by-windows-how-to-handle-manually

likely in this case it may be this http blogs.msdn.com b oldnewthing archive 2011 01 20 10117963.aspx share improve this answer..

How to address thread-safety of service data used for maintaining static local variables in C++?

http://stackoverflow.com/questions/2955797/how-to-address-thread-safety-of-service-data-used-for-maintaining-static-local-v

itself calls functionThreadSafe http blogs.msdn.com b oldnewthing archive 2004 03 08 85901.aspx is worth a read in this regard...

Most efficient replacement for IsBadReadPtr?

http://stackoverflow.com/questions/496034/most-efficient-replacement-for-isbadreadptr

bug as the IsBadReadPtr implementation http blogs.msdn.com oldnewthing archive 2006 09 27 773741.aspx Edit The only problem with IsBadReadPtr..

Usage limitations during the DllMain Attach and Detach process

http://stackoverflow.com/questions/5834508/usage-limitations-during-the-dllmain-attach-and-detach-process

Raymond Chen's The Old New Thing http blogs.msdn.com b oldnewthing archive 2004 01 27 63401.aspx http blogs.msdn.com b oldnewthing.. archive 2004 01 27 63401.aspx http blogs.msdn.com b oldnewthing archive 2004 01 28 63880.aspx http blogs.msdn.com b oldnewthing.. archive 2004 01 28 63880.aspx http blogs.msdn.com b oldnewthing archive 2007 09 04 4731478.aspx http blogs.msdn.com b oldnewthing..

How do I force my app to come to the front and take focus?

http://stackoverflow.com/questions/688337/how-do-i-force-my-app-to-come-to-the-front-and-take-focus

What happens to global variables declared in a DLL?

http://stackoverflow.com/questions/75701/what-happens-to-global-variables-declared-in-a-dll

Chen's excellent blog on the subject http blogs.msdn.com oldnewthing archive 2004 01 27 63401.aspx http blogs.msdn.com oldnewthing.. archive 2004 01 27 63401.aspx http blogs.msdn.com oldnewthing archive 2004 01 28 63880.aspx In this case lazy initialization..