OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rwl
(Results
1 - 3
of
3
) sorted by null
/external/valgrind/main/helgrind/tests/
tc12_rwl_trivial.c
22
pthread_rwlock_t
rwl
;
local
24
r = pthread_rwlock_init( &
rwl
, NULL ); assert(r == 0);
26
r = pthread_rwlock_wrlock( &
rwl
); assert(r == 0);
27
r = pthread_rwlock_unlock( &
rwl
); assert(r == 0);
29
r = pthread_rwlock_rdlock( &
rwl
); assert(r == 0);
30
r = pthread_rwlock_rdlock( &
rwl
); assert(r == 0);
31
r = pthread_rwlock_unlock( &
rwl
); assert(r == 0);
32
r = pthread_rwlock_unlock( &
rwl
); assert(r == 0);
35
r = pthread_rwlock_unlock( &
rwl
); assert(OS_IS_DARWIN || r == 0);
37
r = pthread_rwlock_destroy( &
rwl
); assert(r == 0)
[
all
...]
tc23_bogus_condwait.c
11
pthread_rwlock_t
rwl
;
variable
57
r= pthread_rwlock_init(&
rwl
, NULL); assert(!r);
75
r= pthread_cond_wait(&cv, (pthread_mutex_t*)&
rwl
);
tc20_verifywrap.c
47
pthread_rwlock_t
rwl
;
local
178
r= pthread_rwlock_init( &
rwl
, NULL ); assert(!r);
179
r= pthread_rwlock_unlock( &
rwl
);
Completed in 573 milliseconds