tst-fork3.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. #include "../test-skeleton.h"
  22. #ifdef __ARCH_USE_MMU__
  23. static pid_t initial_pid;
  24. static void *
  25. tf2 (void *arg)
  26. {
  27. if (getppid () != initial_pid)
  28. {
  29. printf ("getppid in thread returned %ld, expected %ld\n",
  30. (long int) getppid (), (long int) initial_pid);
  31. return (void *) -1;
  32. }
  33. return NULL;
  34. }
  35. static void *
  36. tf1 (void *arg)
  37. {
  38. pid_t child = fork ();
  39. if (child == 0)
  40. {
  41. if (getppid () != initial_pid)
  42. {
  43. printf ("first getppid returned %ld, expected %ld\n",
  44. (long int) getppid (), (long int) initial_pid);
  45. exit (1);
  46. }
  47. pthread_t th2;
  48. if (pthread_create (&th2, NULL, tf2, NULL) != 0)
  49. {
  50. puts ("child: pthread_create failed");
  51. exit (1);
  52. }
  53. void *result;
  54. if (pthread_join (th2, &result) != 0)
  55. {
  56. puts ("pthread_join failed");
  57. exit (1);
  58. }
  59. exit (result == NULL ? 0 : 1);
  60. }
  61. else if (child == -1)
  62. {
  63. puts ("initial fork failed");
  64. exit (1);
  65. }
  66. int status;
  67. if (TEMP_FAILURE_RETRY (waitpid (child, &status, 0)) != child)
  68. {
  69. printf ("waitpid failed: %m\n");
  70. exit (1);
  71. }
  72. exit (status);
  73. }
  74. int
  75. main (void)
  76. {
  77. initial_pid = getpid ();
  78. pthread_t th1;
  79. if (pthread_create (&th1, NULL, tf1, NULL) != 0)
  80. {
  81. puts ("parent: pthread_create failed");
  82. exit (1);
  83. }
  84. /* This call should never return. */
  85. pthread_join (th1, NULL);
  86. return 1;
  87. }
  88. #else
  89. int main(void)
  90. {
  91. printf("Skipping test on non-mmu host!\n");
  92. return 23;
  93. }
  94. #endif