Searched defs:g_Mtx (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/HostDrivers/VBoxUSB/
H A DVBoxUSBFilterMgr.cpp56 do { int rc2 = RTSemFastMutexRequest(g_Mtx); AssertRC(rc2); } while (0)
59 do { int rc2 = RTSemFastMutexRelease(g_Mtx); AssertRC(rc2); } while (0)
109 static RTSEMFASTMUTEX g_Mtx = NIL_RTSEMFASTMUTEX; variable
127 int rc = RTSemFastMutexCreate(&g_Mtx);
162 RTSemFastMutexDestroy(g_Mtx);
163 g_Mtx = NIL_RTSEMFASTMUTEX;
/vbox/src/VBox/HostDrivers/VBoxUSB/darwin/
H A DVBoxUSB.cpp73 #define VBOXUSB_LOCK() do { int rc = RTSemFastMutexRequest(g_Mtx); AssertRC(rc); } while (0)
75 #define VBOXUSB_UNLOCK() do { int rc = RTSemFastMutexRelease(g_Mtx); AssertRC(rc); } while (0)
155 /** List of user clients. Protected by g_Mtx. */
216 /** Pointer to the list head. Protected by g_Mtx. */
285 static RTSEMFASTMUTEX g_Mtx = NIL_RTSEMFASTMUTEX; variable
310 rc = RTSemFastMutexCreate(&g_Mtx);
332 RTSemFastMutexDestroy(g_Mtx);
333 g_Mtx = NIL_RTSEMFASTMUTEX;
361 rc = RTSemFastMutexDestroy(g_Mtx);
363 g_Mtx
[all...]

Completed in 51 milliseconds