Add hidden_def.
[glibc.git] / nptl / tst-spin2.c
blob95a92933169be5ef3eade7fc46647d373e6d4745
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 <stdint.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <sys/mman.h>
28 #include <sys/wait.h>
31 static int
32 do_test (void)
34 #if ! _POSIX_THREAD_PROCESS_SHARED
36 puts ("_POSIX_THREAD_PROCESS_SHARED not supported, test skipped");
38 #else
40 size_t ps = sysconf (_SC_PAGESIZE);
41 char tmpfname[] = "/tmp/tst-spin2.XXXXXX";
42 char data[ps];
43 void *mem;
44 int fd;
45 pthread_spinlock_t *s;
46 pid_t pid;
47 char *p;
48 int err;
50 fd = mkstemp (tmpfname);
51 if (fd == -1)
53 printf ("cannot open temporary file: %m\n");
54 return 1;
57 /* Make sure it is always removed. */
58 unlink (tmpfname);
60 /* Create one page of data. */
61 memset (data, '\0', ps);
63 /* Write the data to the file. */
64 if (write (fd, data, ps) != (ssize_t) ps)
66 puts ("short write");
67 return 1;
70 mem = mmap (NULL, ps, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
71 if (mem == MAP_FAILED)
73 printf ("mmap failed: %m\n");
74 return 1;
77 s = (pthread_spinlock_t *) (((uintptr_t) mem
78 + __alignof (pthread_spinlock_t))
79 & ~(__alignof (pthread_spinlock_t) - 1));
80 p = (char *) (s + 1);
82 if (pthread_spin_init (s, PTHREAD_PROCESS_SHARED) != 0)
84 puts ("spin_init failed");
85 return 1;
88 if (pthread_spin_lock (s) != 0)
90 puts ("spin_lock failed");
91 return 1;
94 err = pthread_spin_trylock (s);
95 if (err == 0)
97 puts ("1st spin_trylock succeeded");
98 return 1;
100 else if (err != EBUSY)
102 puts ("1st spin_trylock didn't return EBUSY");
103 return 1;
106 err = pthread_spin_unlock (s);
107 if (err != 0)
109 puts ("parent: spin_unlock failed");
110 return 1;
113 err = pthread_spin_trylock (s);
114 if (err != 0)
116 puts ("2nd spin_trylock failed");
117 return 1;
120 *p = 0;
122 puts ("going to fork now");
123 pid = fork ();
124 if (pid == -1)
126 puts ("fork failed");
127 return 1;
129 else if (pid == 0)
131 /* Play some lock ping-pong. It's our turn to unlock first. */
132 if ((*p)++ != 0)
134 puts ("child: *p != 0");
135 return 1;
138 if (pthread_spin_unlock (s) != 0)
140 puts ("child: 1st spin_unlock failed");
141 return 1;
144 puts ("child done");
146 else
148 if (pthread_spin_lock (s) != 0)
150 puts ("parent: 2nd spin_lock failed");
151 return 1;
154 puts ("waiting for child");
156 waitpid (pid, NULL, 0);
158 puts ("parent done");
160 #endif
162 return 0;
165 #define TEST_FUNCTION do_test ()
166 #include "../test-skeleton.c"