In a multi-thread app. is there a way to programatically have thread-B check what function thead-A is currently in?
|
|
|||||
|
|
|
This is something that should be built in to the application itself in order to avoid possible contention between threads. In my opinion, a thread should never control the execution of another (e.g., suspend/resume), except for starting it. They should merely suggest that the other thread control itself (with mutexes and events, for example). That greatly simplifies thread management and reduces the possibility of race conditions. If you really want thread B to know what thread A is currently doing, thread A should be communicating that to thread B (or any other thread such as the main thread below) using, as an example, a mutex-protected string with the function name in it. Something along the lines of (pseudo-code):
This method can be used in any language or environment that supports threading, not just .Net or C#. Each function in thread A has prolog and epilog code to save, set and restore the values used in other threads. |
||
|
|
|
|
Here's a similar question: http://stackoverflow.com/questions/285031/how-to-get-non-current-threads-stacktrace |
||
|
|
|
|
You can get a stack trace of another thread by doing this:
From this you can get the call stack, and the function it's currently executing. |
||||
|
