OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:condvar
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.h
105
/* the mutex protects only the
condvar
, not the struct */
107
pipe_condvar
condvar
;
member in struct:egl_g3d_sync
/external/mesa3d/src/gallium/auxiliary/os/
os_thread.h
286
#define pipe_static_condvar(
condvar
) \
287
static pipe_condvar
condvar
= 1000
289
#define pipe_condvar_init(
condvar
) \
290
(void) (
condvar
= 1000)
292
#define pipe_condvar_destroy(
condvar
) \
293
(void)
condvar
298
#define pipe_condvar_wait(
condvar
, mutex) \
300
os_time_sleep(
condvar
); \
304
#define pipe_condvar_signal(
condvar
) \
305
(void)
condvar
345
pipe_
condvar
condvar
;
member in struct:__anon19579
[
all
...]
Completed in 273 milliseconds