1 /* Copyright (C) 2002-2014 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, see
17 <http://www.gnu.org/licenses/>. */
33 size_t ps = sysconf (_SC_PAGESIZE);
34 char tmpfname[] = "/tmp/tst-rwlock4.XXXXXX";
39 pthread_rwlockattr_t a;
45 fd = mkstemp (tmpfname);
48 printf ("cannot open temporary file: %m\n");
52 /* Make sure it is always removed. */
55 /* Create one page of data. */
56 memset (data, '\0', ps);
58 /* Write the data to the file. */
59 if (write (fd, data, ps) != (ssize_t) ps)
65 mem = mmap (NULL, ps, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
66 if (mem == MAP_FAILED)
68 printf ("mmap failed: %m\n");
72 r = (pthread_rwlock_t *) (((uintptr_t) mem + __alignof (pthread_rwlock_t))
73 & ~(__alignof (pthread_rwlock_t) - 1));
76 if (pthread_rwlockattr_init (&a) != 0)
78 puts ("rwlockattr_init failed");
82 if (pthread_rwlockattr_getpshared (&a, &s) != 0)
84 puts ("1st rwlockattr_getpshared failed");
88 if (s != PTHREAD_PROCESS_PRIVATE)
90 puts ("default pshared value wrong");
94 if (pthread_rwlockattr_setpshared (&a, PTHREAD_PROCESS_SHARED) != 0)
96 puts ("rwlockattr_setpshared failed");
100 if (pthread_rwlockattr_getpshared (&a, &s) != 0)
102 puts ("2nd rwlockattr_getpshared failed");
106 if (s != PTHREAD_PROCESS_SHARED)
108 puts ("pshared value after setpshared call wrong");
112 if (pthread_rwlock_init (r, &a) != 0)
114 puts ("rwlock_init failed");
118 if (pthread_rwlock_rdlock (r) != 0)
120 puts ("rwlock_rdlock failed");
124 if (pthread_rwlockattr_destroy (&a) != 0)
126 puts ("rwlockattr_destroy failed");
130 err = pthread_rwlock_trywrlock (r);
133 puts ("rwlock_trywrlock succeeded");
136 else if (err != EBUSY)
138 puts ("rwlock_trywrlock didn't return EBUSY");
144 puts ("going to fork now");
148 puts ("fork failed");
153 /* Play some lock ping-pong. It's our turn to unlock first. */
156 puts ("child: *p != 0");
160 if (pthread_rwlock_unlock (r) != 0)
162 puts ("child: 1st rwlock_unlock failed");
170 if (pthread_rwlock_wrlock (r) != 0)
172 puts ("parent: rwlock_wrlock failed");
182 puts ("parent done");
188 #define TEST_FUNCTION do_test ()
189 #include "../test-skeleton.c"