vote up 0 vote down star
1

In Windows, is there a tool to monitor the status of process synchronisation objects? ie.

  • event/mutex : signaled or not signaled
  • semaphore : count

Better yet, to log which thread did what, eg. "thread #5421 Signal Event - testevt"

flag

3 Answers

vote up 3 vote down check

Memory Validator

Process Explorer

Handle usage: handle -s ==> Print count of each type of handle open.

[EDIT]:

How to monitor the status of process synchronization objects using Process Explorer.

Open Process Explorer

  • Click on your exe in the process section( for ex: MyApp.exe )
  • Click Show Lower Pane Press. This will show all synchronization objects. ( For ex: myEvent)
  • Right click on synchronization object(ex:myEvent) and click Properties... in context menu.
  • This brings the details of the synchronization object . In the Details tab, you can see

    Event Info (if synch object is event): Gives information about the state (whether the synchronization object is signaled)

    Semaphore info (if synch object is Semaphore): Provides the Count of the semaphore.

link|flag
+1 for Process Explorer - this is what I'd used to explore NT objects – Preet Sangha Apr 29 at 8:52
Thanks for the edit. Now I really know Process Explorer meets my needs. – sep Apr 30 at 4:18
vote up 1 vote down

Take a look at Intel's ThreadChecker and Parallel Studio. Most of their tools sit on top of Visual Studio.

http://software.intel.com/en-us/intel-vtune/

http://software.intel.com/en-us/intel-thread-checker/

http://software.intel.com/en-us/intel-vtune/

link|flag
vote up 0 vote down

Windbg can be helpful but you have to learn how to use it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.