tags:

views:

215

answers:

1

A program creates a mutex as part of its start-up. I don't know the format of this mutex so I wondered if there is a way to get a list of all non-abandoned mutex, open the program, get a new list and see if I can find the mutex by removing all duplicate entries.

Is there a way to get this list?

A: 

If you're on Windows, WinObj can show you named mutexes. Or you can use Process Explorer to find out which objects a specific process has open.

Roger Lipscombe