Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

liblockdep: Add pthread_rwlock_t test suite

A simple test to make sure we handle rwlocks correctly.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Cc: torvalds@linux-foundation.org
Link: http://lkml.kernel.org/r/1371163284-6346-7-git-send-email-sasha.levin@oracle.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Sasha Levin and committed by
Ingo Molnar
dbe94182 5a52c9b4

+13
+13
tools/lib/lockdep/tests/WW.c
··· 1 + #include <liblockdep/rwlock.h> 2 + 3 + void main(void) 4 + { 5 + pthread_rwlock_t a, b; 6 + 7 + pthread_rwlock_init(&a, NULL); 8 + pthread_rwlock_init(&b, NULL); 9 + 10 + pthread_rwlock_wrlock(&a); 11 + pthread_rwlock_rdlock(&b); 12 + pthread_rwlock_wrlock(&a); 13 + }