Optimize for kernels which are known to have the vfork syscall.
[glibc/pb-stable.git] / nptl / tst-atfork1.c
blob25bd3f2f09a806efb3b7c337d975bbb79535882c
1 /* Copyright (C) 2002 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 <pthread.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.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;
71 if (pthread_atfork (prepare1, parent1, child1) != 0)
73 puts ("1st atfork failed");
74 exit (1);
76 if (pthread_atfork (prepare2, parent2, child2) != 0)
78 puts ("2nd atfork failed");
79 exit (1);
82 pid = fork ();
83 if (pid == -1)
85 puts ("fork failed");
86 exit (1);
89 if (pid != 0)
91 /* Parent. */
92 if (val != 24)
94 printf ("expected val=%d, got %d\n", 24, val);
95 exit (1);
98 else
100 /* Child. */
101 if (val != 80)
103 printf ("expected val=%d, got %d\n", 80, val);
104 exit (1);
108 return 0;
111 #define TEST_FUNCTION do_test ()
112 #include "../test-skeleton.c"