Home | History | Annotate | Download | only in helgrind

Lines Matching full:coretid

175    thread->coretid      = VG_INVALID_THREADID;
449 VG_(printf)("coretid %d -> Thread %p\n", i, map_threads[i]);
508 if (thr->coretid == VG_INVALID_THREADID)
511 VG_(printf)("tid %d ", thr->coretid);
626 thr->coretid = 1; /* FIXME: hardwires an assumption about the
632 tl_assert(HG_(is_sane_ThreadId)(thr->coretid));
633 tl_assert(thr->coretid != VG_INVALID_THREADID);
635 map_threads[thr->coretid] = thr;
648 static Thread* map_threads_maybe_lookup ( ThreadId coretid )
651 tl_assert( HG_(is_sane_ThreadId)(coretid) );
652 thr = map_threads[coretid];
657 static inline Thread* map_threads_lookup ( ThreadId coretid )
660 tl_assert( HG_(is_sane_ThreadId)(coretid) );
661 thr = map_threads[coretid];
675 tid = thr->coretid;
687 tl_assert(map_threads[tid]->coretid == tid);
691 static void map_threads_delete ( ThreadId coretid )
694 tl_assert(coretid != 0);
695 tl_assert( HG_(is_sane_ThreadId)(coretid) );
696 thr = map_threads[coretid];
698 map_threads[coretid] = NULL;
1407 ThreadId coretid;
1413 coretid = VG_(get_running_tid)();
1418 if (coretid == VG_INVALID_THREADID)
1419 coretid = 1; /* KLUDGE */
1420 thr = map_threads_lookup( coretid );
1563 tl_assert(thr_c->coretid == VG_INVALID_THREADID);
1564 thr_c->coretid = child;
1636 tl_assert(thr_q->coretid == quit_tid);
1637 thr_q->coretid = VG_INVALID_THREADID;
1667 tl_assert(thr->coretid == i);
1668 thr->coretid = VG_INVALID_THREADID;