Home
last modified time | relevance | path

Searched refs:sg_first (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/drd/
Ddrd_thread.c216 tl_assert(DRD_(g_threadinfo)[i].sg_first == NULL); in DRD_()
274 for (p = ti->sg_first; p; p = p->thr_next) { in DRD_()
283 if (p->thr_prev == 0 && p != ti->sg_first) in DRD_()
313 tl_assert(DRD_(g_threadinfo)[created].sg_first == NULL); in DRD_()
536 DRD_(g_threadinfo)[tid].sg_first = NULL; in DRD_()
837 if (DRD_(g_threadinfo)[tid].sg_first == NULL) in thread_append_segment()
838 DRD_(g_threadinfo)[tid].sg_first = sg; in thread_append_segment()
863 if (sg == DRD_(g_threadinfo)[tid].sg_first) in thread_discard_segment()
864 DRD_(g_threadinfo)[tid].sg_first = sg->thr_next; in thread_discard_segment()
992 for (sg = DRD_(g_threadinfo)[i].sg_first; in thread_discard_ordered_segments()
[all …]
Ddrd_thread.h69 struct segment* sg_first;/**< Segment list. */ member