OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:thread_state_key
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_platform_mac.cpp
52
static pthread_key_t
thread_state_key
;
member in namespace:__tsan
65
int res = pthread_setspecific(
thread_state_key
, thr);
71
CHECK_EQ(
thread_state_key
, 0);
72
res = pthread_key_create(&
thread_state_key
, ThreadStateDestructor);
74
res = pthread_setspecific(
thread_state_key
, main_thread_state);
90
if (UNLIKELY(!
thread_state_key
)) {
96
ThreadState *thr = (ThreadState *)pthread_getspecific(
thread_state_key
);
99
int res = pthread_setspecific(
thread_state_key
, thr);
106
int res = pthread_setspecific(
thread_state_key
, thr);
111
ThreadState *thr = (ThreadState *)pthread_getspecific(
thread_state_key
);
[
all
...]
tsan_platform_mac.cpp
52
static pthread_key_t
thread_state_key
;
member in namespace:__tsan
65
int res = pthread_setspecific(
thread_state_key
, thr);
71
CHECK_EQ(
thread_state_key
, 0);
72
res = pthread_key_create(&
thread_state_key
, ThreadStateDestructor);
74
res = pthread_setspecific(
thread_state_key
, main_thread_state);
90
if (UNLIKELY(!
thread_state_key
)) {
96
ThreadState *thr = (ThreadState *)pthread_getspecific(
thread_state_key
);
99
int res = pthread_setspecific(
thread_state_key
, thr);
106
int res = pthread_setspecific(
thread_state_key
, thr);
111
ThreadState *thr = (ThreadState *)pthread_getspecific(
thread_state_key
);
[
all
...]
Completed in 41 milliseconds
Indexes created Wed Mar 04 05:31:52 UTC 2026