Searched refs:coretid (Results 1 – 4 of 4) sorted by relevance
46 static inline Bool HG_(is_sane_ThreadId) ( ThreadId coretid ) { in HG_()47 return coretid >= 0 && coretid < VG_N_THREADS; in HG_()
553 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()554 tl_assert( thr->coretid != VG_INVALID_THREADID ); in HG_()560 VG_(maybe_record_error)( thr->coretid, in HG_()576 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()577 tl_assert( thr->coretid != VG_INVALID_THREADID ); in HG_()578 VG_(maybe_record_error)( thr->coretid, in HG_()596 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()597 tl_assert( thr->coretid != VG_INVALID_THREADID ); in HG_()598 VG_(maybe_record_error)( thr->coretid, in HG_()611 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()[all …]
171 thread->coretid = VG_INVALID_THREADID; in mk_Thread()592 thr->coretid = 1; /* FIXME: hardwires an assumption about the in initialise_data_structures()598 tl_assert(HG_(is_sane_ThreadId)(thr->coretid)); in initialise_data_structures()599 tl_assert(thr->coretid != VG_INVALID_THREADID); in initialise_data_structures()601 map_threads[thr->coretid] = thr; in initialise_data_structures()614 static Thread* map_threads_maybe_lookup ( ThreadId coretid ) in map_threads_maybe_lookup() argument617 tl_assert( HG_(is_sane_ThreadId)(coretid) ); in map_threads_maybe_lookup()618 thr = map_threads[coretid]; in map_threads_maybe_lookup()623 static inline Thread* map_threads_lookup ( ThreadId coretid ) in map_threads_lookup() argument626 tl_assert( HG_(is_sane_ThreadId)(coretid) ); in map_threads_lookup()[all …]
87 ThreadId coretid; /* .. via its hgthread field */ member