OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newcond
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc
170
void *
newcond
= malloc(sizeof(pthread_cond_t));
local
171
internal_memset(
newcond
, 0, sizeof(pthread_cond_t));
172
if (atomic_compare_exchange_strong(p, &cond, (uptr)
newcond
,
174
return (pthread_cond_t*)
newcond
;
175
free(
newcond
);
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
1060
void *
newcond
= WRAP(malloc)(pthread_cond_t_sz);
local
1061
internal_memset(
newcond
, 0, pthread_cond_t_sz);
1062
if (atomic_compare_exchange_strong(p, &cond, (uptr)
newcond
,
1064
return
newcond
;
1065
WRAP(free)(
newcond
);
[
all
...]
Completed in 59 milliseconds