Searched refs:g_pDarwinLockGroup (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dinitterm-r0drv-darwin.cpp45 lck_grp_t *g_pDarwinLockGroup = NULL; variable
57 g_pDarwinLockGroup = lck_grp_alloc_init("IPRT", LCK_GRP_ATTR_NULL);
58 AssertReturn(g_pDarwinLockGroup, VERR_NO_MEMORY);
102 if (g_pDarwinLockGroup)
104 lck_grp_free(g_pDarwinLockGroup);
105 g_pDarwinLockGroup = NULL;
H A Dsemfastmutex-r0drv-darwin.cpp74 Assert(g_pDarwinLockGroup);
75 pThis->pMtx = lck_mtx_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
98 Assert(g_pDarwinLockGroup);
99 lck_mtx_free(pThis->pMtx, g_pDarwinLockGroup);
H A Dspinlock-r0drv-darwin.cpp89 Assert(g_pDarwinLockGroup);
90 pThis->pSpinLock = lck_spin_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
119 Assert(g_pDarwinLockGroup);
120 lck_spin_destroy(pThis->pSpinLock, g_pDarwinLockGroup);
H A Dthreadpreempt-r0drv-darwin.cpp70 Assert(g_pDarwinLockGroup);
74 g_aPreemptHacks[i].pSpinLock = lck_spin_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
92 lck_spin_free(g_aPreemptHacks[i].pSpinLock, g_pDarwinLockGroup);
H A Dsemevent-r0drv-darwin.cpp112 Assert(g_pDarwinLockGroup);
113 pThis->pSpinlock = lck_spin_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
149 lck_spin_destroy(pThis->pSpinlock, g_pDarwinLockGroup);
H A Dsemmutex-r0drv-darwin.cpp93 Assert(g_pDarwinLockGroup);
94 pThis->pSpinlock = lck_spin_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
113 lck_spin_destroy(pThis->pSpinlock, g_pDarwinLockGroup);
H A Dsemeventmulti-r0drv-darwin.cpp114 Assert(g_pDarwinLockGroup);
115 pThis->pSpinlock = lck_spin_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
151 lck_spin_destroy(pThis->pSpinlock, g_pDarwinLockGroup);
H A Dthe-darwin-kernel.h169 extern lck_grp_t *g_pDarwinLockGroup;

Completed in 498 milliseconds