0

My multithreaded delphi application has a VEH exception handler. (http://msdn.microsoft.com/en-us/library/windows/desktop/ms681420(v=vs.85).aspx) i can get memory address, exception type etc when triggered but can't get thread information.

is it possible to get thread id from memory address?

4

1 回答 1

2

是否可以从内存地址获取线程 ID?

如果内存地址是指代码地址,那么答案是否定的。多个线程可以在同一地址同时执行。

我没有看到任何证据表明这些异常处理程序是在引发异常的线程之外的线程中调用的。

于 2013-10-13T19:15:57.590 回答