tst-fork2.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* Copyright (C) 2002 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Roland McGrath <roland@redhat.com>, 2002.
  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.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <pthread.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <unistd.h>
  20. #include <sys/wait.h>
  21. static pid_t initial_pid;
  22. static void *
  23. tf (void *arg)
  24. {
  25. if (getppid () != initial_pid)
  26. {
  27. printf ("getppid in thread returned %ld, expected %ld\n",
  28. (long int) getppid (), (long int) initial_pid);
  29. return (void *) -1;
  30. }
  31. return NULL;
  32. }
  33. int
  34. main (void)
  35. {
  36. initial_pid = getpid ();
  37. pid_t child = fork ();
  38. if (child == 0)
  39. {
  40. if (getppid () != initial_pid)
  41. {
  42. printf ("first getppid returned %ld, expected %ld\n",
  43. (long int) getppid (), (long int) initial_pid);
  44. exit (1);
  45. }
  46. pthread_t th;
  47. if (pthread_create (&th, NULL, tf, NULL) != 0)
  48. {
  49. puts ("pthread_create failed");
  50. exit (1);
  51. }
  52. void *result;
  53. if (pthread_join (th, &result) != 0)
  54. {
  55. puts ("pthread_join failed");
  56. exit (1);
  57. }
  58. exit (result == NULL ? 0 : 1);
  59. }
  60. else if (child == -1)
  61. {
  62. puts ("initial fork failed");
  63. return 1;
  64. }
  65. int status;
  66. if (TEMP_FAILURE_RETRY (waitpid (child, &status, 0)) != child)
  67. {
  68. printf ("waitpid failed: %m\n");
  69. return 1;
  70. }
  71. return status;
  72. }