1 /* Copyright (C) 2003-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
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, see
17 <http://www.gnu.org/licenses/>. */
31 size_t ps
= sysconf (_SC_PAGESIZE
);
32 char tmpfname
[] = "/tmp/tst-mutex9.XXXXXX";
37 pthread_mutexattr_t a
;
40 fd
= mkstemp (tmpfname
);
43 printf ("cannot open temporary file: %m\n");
47 /* Make sure it is always removed. */
50 /* Create one page of data. */
51 memset (data
, '\0', ps
);
53 /* Write the data to the file. */
54 if (write (fd
, data
, ps
) != (ssize_t
) ps
)
60 mem
= mmap (NULL
, ps
, PROT_READ
| PROT_WRITE
, MAP_SHARED
, fd
, 0);
61 if (mem
== MAP_FAILED
)
63 printf ("mmap failed: %m\n");
67 m
= (pthread_mutex_t
*) (((uintptr_t) mem
+ __alignof (pthread_mutex_t
))
68 & ~(__alignof (pthread_mutex_t
) - 1));
70 if (pthread_mutexattr_init (&a
) != 0)
72 puts ("mutexattr_init failed");
76 if (pthread_mutexattr_setpshared (&a
, PTHREAD_PROCESS_SHARED
) != 0)
78 puts ("mutexattr_setpshared failed");
82 if (pthread_mutexattr_settype (&a
, PTHREAD_MUTEX_RECURSIVE
) != 0)
84 puts ("mutexattr_settype failed");
89 if (pthread_mutexattr_setprotocol (&a
, PTHREAD_PRIO_INHERIT
) != 0)
91 puts ("pthread_mutexattr_setprotocol failed");
97 if ((e
= pthread_mutex_init (m
, &a
)) != 0)
102 puts ("PI mutexes unsupported");
106 puts ("mutex_init failed");
110 if (pthread_mutex_lock (m
) != 0)
112 puts ("mutex_lock failed");
116 if (pthread_mutexattr_destroy (&a
) != 0)
118 puts ("mutexattr_destroy failed");
122 puts ("going to fork now");
126 puts ("fork failed");
131 if (pthread_mutex_trylock (m
) == 0)
133 puts ("child: mutex_trylock succeeded");
137 if (pthread_mutex_unlock (m
) == 0)
139 puts ("child: mutex_unlock succeeded");
144 gettimeofday (&tv
, NULL
);
146 TIMEVAL_TO_TIMESPEC (&tv
, &ts
);
147 ts
.tv_nsec
+= 500000000;
148 if (ts
.tv_nsec
>= 1000000000)
151 ts
.tv_nsec
-= 1000000000;
154 e
= pthread_mutex_timedlock (m
, &ts
);
157 puts ("child: mutex_timedlock succeeded");
162 puts ("child: mutex_timedlock didn't time out");
168 pthread_mutex_lock (m
);
170 puts ("child: mutex_lock returned");
178 if (TEMP_FAILURE_RETRY (waitpid (pid
, &status
, 0)) != pid
)
180 puts ("waitpid failed");
183 if (! WIFSIGNALED (status
))
185 puts ("child not killed by signal");
188 if (WTERMSIG (status
) != SIGALRM
)
190 puts ("child not killed by SIGALRM");
198 #define TEST_FUNCTION do_test ()
199 #include "../test-skeleton.c"