OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:last_sem_post_seg
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/main/drd/
drd_semaphore.c
51
/** Push a segment at the end of the queue 'p->
last_sem_post_seg
'. */
57
n = VG_(addToXA)(p->
last_sem_post_seg
, &sg);
60
p->a1, n, VG_(sizeXA)(p->
last_sem_post_seg
));
62
tl_assert(*(Segment**)VG_(indexXA)(p->
last_sem_post_seg
, n) == sg);
65
/** Pop a segment from the beginning of the queue 'p->
last_sem_post_seg
'. */
71
sz = VG_(sizeXA)(p->
last_sem_post_seg
);
79
sg = *(Segment**)VG_(indexXA)(p->
last_sem_post_seg
, sz - 1);
81
VG_(dropTailXA)(p->
last_sem_post_seg
, 1);
110
p->
last_sem_post_seg
= VG_(newXA)(VG_(malloc), "drd.sg-stack",
134
VG_(deleteXA)(p->
last_sem_post_seg
);
[
all
...]
drd_clientobj.h
112
XArray*
last_sem_post_seg
; // array of Segment*, used as a stack.
member in struct:semaphore_info
Completed in 19 milliseconds