I'm encountering an odd issue on a sampling profiler in Windows 7 (no such issues AFAICT on previous Windows OSes, be they 32 or 64 bit).
The profiler works by periodically suspending a thread with SuspendThread, then looks at the context with GetThreadContext, before invoking ResumeThread to restart the process.
All this is done from the context of the thread of a multimedia timer (for accuracy, at about 1kHZ, which on pre-Win7 OSes usually incurs a negligible performance penalty).
Under Windows 7, and Windows 7 only, evne though the calls to SuspendThread (& ResumeThread) all succeed, the calls to GetThreadContext fail with error 0x3e6 (ERROR_NOACCESS) with a very high likeliness, though not all the time.
By that I mean that for some profiling runs, everything will work as it does on other OSes (all the GetThreadContext calls will succeed), but for other runs, they will almost all fail (save a dozen maybe, out of tens of thousandths). It's happening with the exact same binaries, the same parameters.
I've tried suggestions on vaguely similar looking issues to repeat the GetThreadContext call, with no more success. I've also tried doing a sleep between the SuspendThread & GetThreadContext, then the GetThreadContext succeeds more often, though it results in drastic slowdowns.
It suggests however that Win7 OS is returning from SuspendThread while the thread has probably not been suspended yet... though, if that's the case, I've no idea how or if to properly wait on the suspension, looping in the thread and pounding GetThreadContext doesn't do it.
edit: highly-aligning the address of the context structure for GetThreadContext as suggested by Dan Bartlett seems to be doing the trick!