Lines Matching full:mutex
110 HANDLE mutex;
187 * Returns a new simple mutex pointer or NULL in case of error
200 tok->mutex = CreateMutex(NULL, FALSE, NULL);
213 * @tok: the simple mutex
228 CloseHandle(tok->mutex);
237 * @tok: the simple mutex
250 WaitForSingleObject(tok->mutex, INFINITE);
266 * @tok: the simple mutex
279 ReleaseMutex(tok->mutex);
291 * xmlRNewMutex() is used to allocate a reentrant mutex for use in
296 * Returns the new reentrant mutex pointer or NULL in case of error
327 * @tok: the reentrant mutex
330 * reentrant mutex.
352 * @tok: the reentrant mutex
397 * @tok: the reentrant mutex
435 * Makes sure that the global initialization mutex is initialized and
443 /* The mutex is statically initialized, so we just lock it. */
526 * Makes sure that the global initialization mutex is destroyed before