Home | History | Annotate | Download | only in wgl

Lines Matching defs:mutex

50     * This mutex has two purposes:
54 * Note: if both this mutex and the stw_device::fb_mutex need to be locked,
57 CRITICAL_SECTION mutex;
62 * Note that even access to immutable members implies acquiring the mutex
112 * This is protected by stw_device::fb_mutex, not the mutex above.
115 * acquiring the stw_framebuffer::mutex of the framebuffer to be deleted.
118 * It is not necessary to acquire the mutex above to navigate the linked list
129 * This function will acquire stw_framebuffer::mutex. stw_framebuffer_unlock
145 assert(stw_own_mutex(&fb->mutex));
157 * This function will acquire stw_framebuffer::mutex. stw_framebuffer_unlock
166 * This function will acquire stw_framebuffer::mutex. stw_framebuffer_unlock
185 EnterCriticalSection(&fb->mutex);
190 * Release stw_framebuffer::mutex lock. This framebuffer must not be accessed
198 assert(stw_own_mutex(&fb->mutex));
199 LeaveCriticalSection(&fb->mutex);