diff options
author | Thomas Pfaff <tpfaff@gmx.net> | 2003-01-09 20:51:55 +0000 |
---|---|---|
committer | Thomas Pfaff <tpfaff@gmx.net> | 2003-01-09 20:51:55 +0000 |
commit | 72fcbc3ee690a028128274d2bd0ad694961b5e5f (patch) | |
tree | 5e23945897f32019001c1f0c8e45101ae5b6ece8 /winsup/testsuite/winsup.api/pthread/mutex1e.c | |
parent | 8ccfe116d0c9ec3afb1cff7f8d41512c8f63466e (diff) | |
download | cygnal-72fcbc3ee690a028128274d2bd0ad694961b5e5f.tar.gz cygnal-72fcbc3ee690a028128274d2bd0ad694961b5e5f.tar.bz2 cygnal-72fcbc3ee690a028128274d2bd0ad694961b5e5f.zip |
Add pthread_mutex tests
Diffstat (limited to 'winsup/testsuite/winsup.api/pthread/mutex1e.c')
-rw-r--r-- | winsup/testsuite/winsup.api/pthread/mutex1e.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/winsup/testsuite/winsup.api/pthread/mutex1e.c b/winsup/testsuite/winsup.api/pthread/mutex1e.c new file mode 100644 index 000000000..2feb16c08 --- /dev/null +++ b/winsup/testsuite/winsup.api/pthread/mutex1e.c @@ -0,0 +1,42 @@ +/* + * mutex1e.c + * + * As for mutex1.c but with type set to PTHREAD_MUTEX_ERRORCHECK. + * + * Create a simple mutex object, lock it, unlock it, then destroy it. + * This is the simplest test of the pthread mutex family that we can do. + * + * Depends on API functions: + * pthread_mutexattr_settype() + * pthread_mutex_init() + * pthread_mutex_destroy() + */ + +#include "test.h" + +pthread_mutex_t mutex = NULL; +pthread_mutexattr_t mxAttr; + +int +main() +{ + assert(pthread_mutexattr_init(&mxAttr) == 0); + + assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_ERRORCHECK) == 0); + + assert(mutex == NULL); + + assert(pthread_mutex_init(&mutex, &mxAttr) == 0); + + assert(mutex != NULL); + + assert(pthread_mutex_lock(&mutex) == 0); + + assert(pthread_mutex_unlock(&mutex) == 0); + + assert(pthread_mutex_destroy(&mutex) == 0); + + assert(mutex == NULL); + + return 0; +} |