I'm writing an application with shared memory and am creating named mutexes with the appropriate "Local\" prefix on the name. However, every time I call the CreateMutex function to create the handles, I get a NULL return value. I even try calling OpenMutex after that and get a NULL return.

The GetLastError() function returns 6 which means ERROR_INVALID_HANDLE. I believe that this happens on the first attempt to create this named mutex in any process. I included windows.h after including some MFC components and am using CMutex elsewhere in the application; so I don't know if this is a problem or not. I am passing NULL and FALSE for the first two parameters always and am using Windows XP.

This is a summary of what my code does:

char to_name[16] = "Local\\to_1";
d_mutex_to_h = CreateMutex(NULL, FALSE, to_name);

if (d_mutex_to_h == NULL)
{
   d_mutex_to_h = OpenMutex(NULL, FALSE, to_name);
}
link|improve this question

@Chet, there you go. – Ian Dec 23 '11 at 0:33
1  
"If the function fails, the return value is NULL. To get extended error information, call GetLastError‌​." – AusCBloke Dec 23 '11 at 0:37
@AusCBloke I did call GetLastError, the return is in the post – Ian Dec 23 '11 at 1:07
1  
Note that CreateMutex will open a mutex if it exists - so you shouldn't try to OpenMutex afterwards, this will fail if CreateMutex failed. What was the error return for the createmutex call? (or was the error code for create, not open?) – bdonlan Dec 23 '11 at 1:58
1  
Yeah OpenMutex is always going to fail in that code, however I'm guessing ERROR_INVALID_HANDLE is from CreateMutex not OpenMutex, since OpenMutex should apparently return ERROR_FILE_NOT_FOUND. If the error is from CreateMutex, this is what MSDN says: "If lpName matches the name of an existing event, semaphore, waitable timer, job, or file-mapping object, the function fails and the GetLastError function returns ERROR_INVALID_HANDLE." – AusCBloke Dec 23 '11 at 2:03
show 5 more comments
feedback

2 Answers

up vote 3 down vote accepted

From the MSDN documentation for CreateMutex:

If lpName matches the name of an existing event, semaphore, waitable timer, job, or file-mapping object, the function fails and the GetLastError function returns ERROR_INVALID_HANDLE. This occurs because these objects share the same namespace.

Try using WinObj to see if there's a non-mutex object with the same name.

link|improve this answer
Oh, okay. I am using the same name for mapped shared memory. So I suppose that this would cause this. – Ian Dec 23 '11 at 3:45
feedback

CreateMutex() takes LPCTSTR as last argument. This is a macro which is LPCWSTR if UNICODE is defined, and LPCSTR otherwise. However you are passing a pointer to char string. It may cause a problem if your program is compiled with UNICODE defined.

Try this code and see if it changes anything:

d_mutex_to_h = CreateMutex(NULL, FALSE, _T("your_mutex_name_here"));
link|improve this answer
This would fail with a compile-time error if this was the problem – bdonlan Dec 23 '11 at 2:26
@bdonlan Good point, +1 to your answer. Still there may be a trouble when TCHAR and char are mixed. Compiler would most probably see it tho. – Pavel Zhuravlev Dec 23 '11 at 2:34
feedback

Your Answer

 
or
required, but never shown

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