OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MUTEX
(Results
1 - 4
of
4
) sorted by null
/external/srec/portable/include/
pmutex.h
47
typedef HANDLE
MUTEX
;
50
#define createMutex(
mutex
, locked) \
51
(*
mutex
= CreateMutex(NULL, locked, NULL)) == 0 ? ESR_MUTEX_CREATION_ERROR : ESR_SUCCESS
53
#define lockMutex(
mutex
) waitForHandle(
mutex
, INFINITE)
54
#define unlockMutex(
mutex
) (ReleaseMutex(*
mutex
) ? ESR_SUCCESS : ESR_FATAL_ERROR)
55
#define deleteMutex(
mutex
) ((void) CloseHandle(*
mutex
))
70
typedef pthread_mutex_t
MUTEX
;
[
all
...]
/external/oprofile/module/
compat22.h
111
/* 2.2.18 add doubled linked list wait_queue and
mutex
*/
113
#define DECLARE_MUTEX(foo) struct semaphore foo =
MUTEX
/external/srec/portable/src/
pmemory_ext.c
35
static
MUTEX
memextMutex;
pmemory.c
53
static
MUTEX
memMutex;
242
* could fix it by using static
mutex
initialization in some OS,
296
* could fix it by using static
mutex
initialization in some OS,
Completed in 1716 milliseconds