Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp188 atomic_store(&thr->in_blocking_func, 1, memory_order_relaxed); in EnterBlockingFunc()
191 atomic_store(&thr->in_blocking_func, 0, memory_order_relaxed); in EnterBlockingFunc()
279 if (UNLIKELY(atomic_load(&thr->in_blocking_func, memory_order_relaxed))) { in ScopedInterceptor()
286 atomic_store(&thr->in_blocking_func, 0, memory_order_relaxed); in ScopedInterceptor()
377 atomic_store(&thr->in_blocking_func, 0, memory_order_relaxed); in ~BlockingCall()
553 buf->in_blocking_func = atomic_load(&thr->in_blocking_func, memory_order_relaxed); in SetJmp()
571 atomic_store(&thr->in_blocking_func, buf->in_blocking_func, in LongJmp()
1213 CHECK_EQ(atomic_load(&thr->in_blocking_func, memory_order_relaxed), 1); in Unlock()
1214 atomic_store(&thr->in_blocking_func, 0, memory_order_relaxed); in Unlock()
2192 atomic_load(&thr->in_blocking_func, memory_order_relaxed)) { in sighandler()
[all …]
H A Dtsan_rtl.h100 bool in_blocking_func; member
195 atomic_uintptr_t in_blocking_func; member
638 DCHECK(!atomic_load(&thr->in_blocking_func, memory_order_relaxed)); in thr_()