HomeSort by relevance Sort by last modified time
    Searched refs:last_sem_post_seg (Results 1 - 2 of 2) sorted by null

  /external/valgrind/main/drd/
drd_semaphore.c 50 /** Push a segment at the end of the queue 'p->last_sem_post_seg'. */
56 n = VG_(addToXA)(p->last_sem_post_seg, &sg);
59 p->a1, n, VG_(sizeXA)(p->last_sem_post_seg));
61 tl_assert(*(Segment**)VG_(indexXA)(p->last_sem_post_seg, n) == sg);
64 /** Pop a segment from the beginning of the queue 'p->last_sem_post_seg'. */
70 sz = VG_(sizeXA)(p->last_sem_post_seg);
78 sg = *(Segment**)VG_(indexXA)(p->last_sem_post_seg, sz - 1);
80 VG_(dropTailXA)(p->last_sem_post_seg, 1);
109 p->last_sem_post_seg = VG_(newXA)(VG_(malloc), "drd.sg-stack",
133 VG_(deleteXA)(p->last_sem_post_seg);
    [all...]
drd_clientobj.h 111 XArray* last_sem_post_seg; // array of Segment*, used as a stack. member in struct:semaphore_info

Completed in 328 milliseconds