From c3bb9ee1bc384edeec9ca991f58c162b167a558f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 15 Feb 2003 10:32:02 +0000 Subject: Update. * tst-mutex3.c (do_test): Add tests for trylock with RECURSIVE mutexes. --- nptl/tst-mutex3.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 49 insertions(+), 2 deletions(-) (limited to 'nptl/tst-mutex3.c') diff --git a/nptl/tst-mutex3.c b/nptl/tst-mutex3.c index c6c75ca0aa..c45637b5cf 100644 --- a/nptl/tst-mutex3.c +++ b/nptl/tst-mutex3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. @@ -20,12 +20,34 @@ #include #include #include +#include + + +static pthread_mutex_t m; + + +static void * +tf (void *arg) +{ + int e = pthread_mutex_trylock (&m); + if (e == 0) + { + puts ("mutex_trylock in second thread succeeded"); + exit (1); + } + if (e != EBUSY) + { + puts ("mutex_trylock returned wrong value"); + exit (1); + } + + return NULL; +} static int do_test (void) { - pthread_mutex_t m; pthread_mutexattr_t a; if (pthread_mutexattr_init (&a) != 0) @@ -58,6 +80,12 @@ do_test (void) return 1; } + if (pthread_mutex_trylock (&m) != 0) + { + puts ("1st trylock failed"); + return 1; + } + if (pthread_mutex_unlock (&m) != 0) { puts ("mutex_unlock failed"); @@ -70,6 +98,25 @@ do_test (void) return 1; } + pthread_t th; + if (pthread_create (&th, NULL, tf, NULL) != 0) + { + puts ("create failed"); + return 1; + } + + if (pthread_join (th, NULL) != 0) + { + puts ("join failed"); + return 1; + } + + if (pthread_mutex_unlock (&m) != 0) + { + puts ("3rd mutex_unlock failed"); + return 1; + } + if (pthread_mutex_destroy (&m) != 0) { puts ("mutex_destroy failed"); -- cgit v1.2.3