> I'd like to determine the processor on which a specified thread is
running.
Standard C++ has no support for multithreading and consequently no
functions to tell you on which processor the thread is running. You will
need platform specific functions (which are beyond the scope of this
newsgroup) to figure this out.
Comment