Update copyright notices with scripts/update-copyrights
[glibc.git] / nptl / tst-fork3.c
blob1aa6366e97b8e64db3bad8970fc52b64a43ef1f9
1 /* Copyright (C) 2002-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Roland McGrath <roland@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/>. */
19 #include <errno.h>
20 #include <pthread.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <sys/wait.h>
27 static pid_t initial_pid;
30 static void *
31 tf2 (void *arg)
33 if (getppid () != initial_pid)
35 printf ("getppid in thread returned %ld, expected %ld\n",
36 (long int) getppid (), (long int) initial_pid);
37 return (void *) -1;
40 return NULL;
44 static void *
45 tf1 (void *arg)
47 pid_t child = fork ();
48 if (child == 0)
50 if (getppid () != initial_pid)
52 printf ("first getppid returned %ld, expected %ld\n",
53 (long int) getppid (), (long int) initial_pid);
54 exit (1);
57 pthread_t th2;
58 if (pthread_create (&th2, NULL, tf2, NULL) != 0)
60 puts ("child: pthread_create failed");
61 exit (1);
64 void *result;
65 if (pthread_join (th2, &result) != 0)
67 puts ("pthread_join failed");
68 exit (1);
71 exit (result == NULL ? 0 : 1);
73 else if (child == -1)
75 puts ("initial fork failed");
76 exit (1);
79 int status;
80 if (TEMP_FAILURE_RETRY (waitpid (child, &status, 0)) != child)
82 printf ("waitpid failed: %m\n");
83 exit (1);
86 exit (status);
90 int
91 main (void)
93 initial_pid = getpid ();
95 pthread_t th1;
96 if (pthread_create (&th1, NULL, tf1, NULL) != 0)
98 puts ("parent: pthread_create failed");
99 exit (1);
102 /* This call should never return. */
103 pthread_join (th1, NULL);
105 return 1;