diff options
author | Thomas Pfaff <tpfaff@gmx.net> | 2004-03-04 21:08:22 +0000 |
---|---|---|
committer | Thomas Pfaff <tpfaff@gmx.net> | 2004-03-04 21:08:22 +0000 |
commit | a6435f99eab2635b61bfd6d8395f0b4b9ba3ae07 (patch) | |
tree | 945f49de358e049baf63bf26ab2d3243fd7002cc /winsup/testsuite/winsup.api/pthread/mutex8e.c | |
parent | b95ae5046127940693f0a819dcedb08e383011da (diff) | |
download | cygnal-a6435f99eab2635b61bfd6d8395f0b4b9ba3ae07.tar.gz cygnal-a6435f99eab2635b61bfd6d8395f0b4b9ba3ae07.tar.bz2 cygnal-a6435f99eab2635b61bfd6d8395f0b4b9ba3ae07.zip |
* winsup.api/pthread/mutex8e.c: New testcase.
* winsup.api/pthread/mutex8n.c: Ditto.
* winsup.api/pthread/mutex8r.c: Ditto.
Diffstat (limited to 'winsup/testsuite/winsup.api/pthread/mutex8e.c')
-rw-r--r-- | winsup/testsuite/winsup.api/pthread/mutex8e.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/winsup/testsuite/winsup.api/pthread/mutex8e.c b/winsup/testsuite/winsup.api/pthread/mutex8e.c new file mode 100644 index 000000000..7108b02af --- /dev/null +++ b/winsup/testsuite/winsup.api/pthread/mutex8e.c @@ -0,0 +1,35 @@ +/* + * mutex8e.c + * + * Tests PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP. + * + * Depends on API functions: + * pthread_mutex_lock() + * pthread_mutex_unlock() + */ + +#include "test.h" + +pthread_mutex_t mutex = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP; + +int +main() +{ + assert(mutex == PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP); + + assert(pthread_mutex_lock(&mutex) == 0); + + assert(mutex != PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP); + + assert(mutex != NULL); + + assert(pthread_mutex_lock(&mutex) == EDEADLK); + + assert(pthread_mutex_unlock(&mutex) == 0); + + assert(pthread_mutex_destroy(&mutex) == 0); + + assert(mutex == NULL); + + return 0; +} |