vote up 1 vote down star

We have multiple MFC apps, which use CMutex( false, "blah" ), where "blah" allows the mutex to work across process boundaries.

One of these apps was re-written without MFC (using Qt instead). How can I simulate the CMutex using Win32 calls? (Qt's QMutex is not inter-process.) I prefer not to modify the MFC apps.

flag

2 Answers

vote up 3 vote down check

For inter-process mutexes you want these calls:

CreateMutex

WaitForSingleObject

ReleaseMutex

CloseHandle

These are the underlying Win32 API calls that CMutex is a wrapper around.

For in-process only mutexes you can also use these calls, which are faster:

InitializeCriticalSection

EnterCriticalSection

LeaveCriticalSection

DeleteCriticalSection

link|flag
vote up 1 vote down

The following funcs will probably be what you want, they are all documented on MSDN.

CreateMutex(...)
WaitForSingleObject(...)
ReleaseMutex(...)
link|flag

Your Answer

Get an OpenID
or

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