OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ptw32_cond_list_tail
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_cond_init.c
146
cv->prev =
ptw32_cond_list_tail
;
148
if (
ptw32_cond_list_tail
!= NULL)
150
ptw32_cond_list_tail
->next = cv;
153
ptw32_cond_list_tail
= cv;
global.c
48
pthread_cond_t
ptw32_cond_list_tail
= NULL;
variable
pthread_cond_destroy.c
205
if (
ptw32_cond_list_tail
== cv)
207
ptw32_cond_list_tail
= cv->prev;
implement.h
583
extern pthread_cond_t
ptw32_cond_list_tail
;
[
all
...]
Completed in 27 milliseconds