* sysdeps/unix/sysv/linux/m68k/semtimedop.S: New file.
[glibc/pb-stable.git] / nptl / tst-mutex5.c
bloba6150125073e9cdeabb69bf45483db2a78371f7b
1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <pthread.h>
22 #include <stdio.h>
23 #include <time.h>
24 #include <unistd.h>
25 #include <sys/time.h>
28 static int
29 do_test (void)
31 pthread_mutex_t m;
32 struct timespec ts;
33 struct timeval tv;
34 struct timeval tv2;
35 int err;
37 if (pthread_mutex_init (&m, NULL) != 0)
39 puts ("mutex_init failed");
40 return 1;
43 if (pthread_mutex_lock (&m) != 0)
45 puts ("mutex_lock failed");
46 return 1;
49 if (pthread_mutex_trylock (&m) == 0)
51 puts ("mutex_trylock succeeded");
52 return 1;
55 gettimeofday (&tv, NULL);
56 TIMEVAL_TO_TIMESPEC (&tv, &ts);
58 ts.tv_sec += 2; /* Wait 2 seconds. */
60 err = pthread_mutex_timedlock (&m, &ts);
61 if (err == 0)
63 puts ("timedlock succeeded");
64 return 1;
66 else if (err != ETIMEDOUT)
68 printf ("timedlock error != ETIMEDOUT: %d\n", err);
69 return 1;
71 else
73 int clk_tck = sysconf (_SC_CLK_TCK);
75 gettimeofday (&tv2, NULL);
77 tv2.tv_sec -= tv.tv_sec;
78 tv2.tv_usec -= tv.tv_usec;
79 if (tv2.tv_usec < 0)
81 tv2.tv_usec += 1000000;
82 tv2.tv_sec -= 1;
85 /* Be a bit tolerant, add one CLK_TCK. */
86 tv2.tv_usec += 1000000 / clk_tck;
87 if (tv2.tv_usec >= 1000000)
89 tv2.tv_usec -= 1000000;
90 ++tv2.tv_sec;
93 if (tv2.tv_sec < 2)
95 printf ("premature timeout: %ld.%06ld difference\n",
96 tv2.tv_sec, tv2.tv_usec);
97 return 1;
101 (void) gettimeofday (&tv, NULL);
102 TIMEVAL_TO_TIMESPEC (&tv, &ts);
104 ts.tv_sec += 2; /* Wait 2 seconds. */
105 /* The following makes the ts value invalid. */
106 ts.tv_nsec += 1000000000;
108 err = pthread_mutex_timedlock (&m, &ts);
109 if (err == 0)
111 puts ("2nd timedlock succeeded");
112 return 1;
114 else if (err != EINVAL)
116 printf ("2nd timedlock error != EINVAL: %d\n", err);
117 return 1;
120 if (pthread_mutex_unlock (&m) != 0)
122 puts ("mutex_unlock failed");
123 return 1;
126 (void) gettimeofday (&tv, NULL);
127 TIMEVAL_TO_TIMESPEC (&tv, &ts);
129 ts.tv_sec += 2; /* Wait 2 seconds. */
130 if (pthread_mutex_timedlock (&m, &ts) != 0)
132 puts ("3rd timedlock failed");
135 (void) gettimeofday (&tv2, NULL);
137 /* Check that timedlock didn't delay. We use a limit of 0.1 secs. */
138 timersub (&tv2, &tv, &tv2);
139 if (tv2.tv_sec > 0 || tv2.tv_usec > 100000)
141 puts ("3rd timedlock didn't return right away");
142 return 1;
145 if (pthread_mutex_unlock (&m) != 0)
147 puts ("final mutex_unlock failed");
148 return 1;
151 if (pthread_mutex_destroy (&m) != 0)
153 puts ("mutex_destroy failed");
154 return 1;
157 return 0;
160 #define TIMEOUT 4
161 #define TEST_FUNCTION do_test ()
162 #include "../test-skeleton.c"