OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Mtx
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/tsan/lit_tests/
race_on_mutex2.c
14
pthread_mutex_t
Mtx
;
15
pthread_mutex_init(&
Mtx
, 0);
17
pthread_create(&t, 0, Thread, &
Mtx
);
19
pthread_mutex_destroy(&
Mtx
);
race_on_mutex.c
7
pthread_mutex_t
Mtx
;
11
pthread_mutex_init(&
Mtx
, 0);
12
pthread_mutex_lock(&
Mtx
);
14
pthread_mutex_unlock(&
Mtx
);
20
pthread_mutex_lock(&
Mtx
);
22
pthread_mutex_unlock(&
Mtx
);
32
pthread_mutex_destroy(&
Mtx
);
Completed in 1198 milliseconds