Finding named object

  • Thread starter Thread starter Dev10110110
  • Start date Start date
D

Dev10110110

Guest
I am creating a named mutex as a form of manual signalling from programs:

H = CreateMutexA ( NULL, 0, "TestFlag000" );

When I tried to find this mutex by name, I can't find it anywhere. Finding it by handle works with SysInternals Handles.exe. Is it actually possible to find such objects by name, and what tools can do this? Is there a better way to do this kind of light weight ad hoc signalling? Thanks.

Continue reading...
 
Back
Top