remove Mutex Manager and associated dead code (#44)

this does nothing
This commit is contained in:
majcosta
2022-12-19 17:43:03 -08:00
committed by GitHub
parent 12c778118e
commit 03e5fbbffd
23 changed files with 0 additions and 346 deletions
-18
View File
@@ -620,24 +620,6 @@ BOOLEAN InitializeVideoManager(HINSTANCE hInstance, UINT16 usCommandShow, void *
}
}
//
// Initialize the mutex sections
//
// ATE: Keep these mutexes for now!
if (InitializeMutex(REFRESH_THREAD_MUTEX, (UINT8 *)"RefreshThreadMutex") == FALSE)
{
return FALSE;
}
if (InitializeMutex(FRAME_BUFFER_MUTEX, (UINT8 *)"FrameBufferMutex") == FALSE)
{
return FALSE;
}
if (InitializeMutex(MOUSE_BUFFER_MUTEX, (UINT8 *)"MouseBufferMutex") == FALSE)
{
return FALSE;
}
//
// Initialize state variables
//