tst-fork3.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. tf2 (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. static void *
  34. tf1 (void *arg)
  35. {
  36. pid_t child = fork ();
  37. if (child == 0)
  38. {
  39. if (getppid () != initial_pid)
  40. {
  41. printf ("first getppid returned %ld, expected %ld\n",
  42. (long int) getppid (), (long int) initial_pid);
  43. exit (1);
  44. }
  45. pthread_t th2;
  46. if (pthread_create (&th2, NULL, tf2, NULL) != 0)
  47. {
  48. puts ("child: pthread_create failed");
  49. exit (1);
  50. }
  51. void *result;
  52. if (pthread_join (th2, &result) != 0)
  53. {
  54. puts ("pthread_join failed");
  55. exit (1);
  56. }
  57. exit (result == NULL ? 0 : 1);
  58. }
  59. else if (child == -1)
  60. {
  61. puts ("initial fork failed");
  62. exit (1);
  63. }
  64. int status;
  65. if (TEMP_FAILURE_RETRY (waitpid (child, &status, 0)) != child)
  66. {
  67. printf ("waitpid failed: %m\n");
  68. exit (1);
  69. }
  70. exit (status);
  71. }
  72. int
  73. main (void)
  74. {
  75. initial_pid = getpid ();
  76. pthread_t th1;
  77. if (pthread_create (&th1, NULL, tf1, NULL) != 0)
  78. {
  79. puts ("parent: pthread_create failed");
  80. exit (1);
  81. }
  82. /* This call should never return. */
  83. pthread_join (th1, NULL);
  84. return 1;
  85. }