Update copyright dates with scripts/update-copyrights
[glibc.git] / sysdeps / pthread / tst-atfork1.c
blob309974c926e78e3581e8cff5ed0c6da93a6bf896
1 /* Copyright (C) 2002-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <pthread.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <sys/wait.h>
26 static int val;
29 static void
30 prepare1 (void)
32 val *= 2;
35 static void
36 prepare2 (void)
38 ++val;
41 static void
42 parent1 (void)
44 val += 4;
47 static void
48 parent2 (void)
50 val *= 4;
53 static void
54 child1 (void)
56 val += 8;
59 static void
60 child2 (void)
62 val *= 8;
66 static int
67 do_test (void)
69 pid_t pid;
70 int status = 0;
72 if (pthread_atfork (prepare1, parent1, child1) != 0)
74 puts ("1st atfork failed");
75 exit (1);
77 if (pthread_atfork (prepare2, parent2, child2) != 0)
79 puts ("2nd atfork failed");
80 exit (1);
83 pid = fork ();
84 if (pid == -1)
86 puts ("fork failed");
87 exit (1);
90 if (pid != 0)
92 /* Parent. */
93 if (val != 24)
95 printf ("expected val=%d, got %d\n", 24, val);
96 exit (1);
99 if (TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)) != pid)
101 puts ("waitpid failed");
102 exit (1);
105 else
107 /* Child. */
108 if (val != 80)
110 printf ("expected val=%d, got %d\n", 80, val);
111 exit (2);
115 return status;
118 #define TEST_FUNCTION do_test ()
119 #include "../test-skeleton.c"