Searched defs:mutex_t (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/back/
H A Dmutex_md.h45 typedef CRITICAL_SECTION mutex_t; typedef
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp237 static int lwp_mutex_init(mutex_t *mx, int scope, void *arg) { memset(mx, 0, sizeof(mutex_t)); return 0; }
238 static int lwp_mutex_destroy(mutex_t *mx) { return 0; }
246 static int pthread_mutex_default_init(mutex_t *mx, int scope, void *arg) { memset(mx, 0, sizeof(mutex_t)); return 0; }
5894 CHECK_SYNCH_OP(int, mutex_op, (mutex_t *mu), (mu), CHECK_MU);
5904 CHECK_SYNCH_OP(int, cond_op, (cond_t *cv, mutex_t *mu), (cv, mu), CHECK_MU;CHECK_CV);
5911 CHECK_SYNCH_OP(int, cond_op, (cond_t *cv, mutex_t *mu, timestruc_t* ts), (cv, mu, ts), CHECK_MU;CHECK_CV);
5918 #define mutex_t lwp_mutex_t macro
5935 #undef mutex_t macro
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4925 typedef CRITICAL_SECTION mutex_t; typedef
4932 static mutex_t sockFnTableMutex;

Completed in 258 milliseconds