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);
}
OpenMutexis always going to fail in that code, however I'm guessingERROR_INVALID_HANDLEis fromCreateMutexnotOpenMutex, sinceOpenMutexshould apparently returnERROR_FILE_NOT_FOUND. If the error is fromCreateMutex, 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