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/test/tsan/
race_on_mutex2.c
13
pthread_mutex_t
Mtx
;
14
pthread_mutex_init(&
Mtx
, 0);
16
pthread_create(&t, 0, Thread, &
Mtx
);
18
pthread_mutex_destroy(&
Mtx
);
race_on_mutex.c
4
pthread_mutex_t
Mtx
;
8
pthread_mutex_init(&
Mtx
, 0);
9
pthread_mutex_lock(&
Mtx
);
11
pthread_mutex_unlock(&
Mtx
);
18
pthread_mutex_lock(&
Mtx
);
20
pthread_mutex_unlock(&
Mtx
);
31
pthread_mutex_destroy(&
Mtx
);
Completed in 68 milliseconds