tst-fork2.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. tf (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. int
  36. main (void)
  37. {
  38. initial_pid = getpid ();
  39. pid_t child = fork ();
  40. if (child == 0)
  41. {
  42. if (getppid () != initial_pid)
  43. {
  44. printf ("first getppid returned %ld, expected %ld\n",
  45. (long int) getppid (), (long int) initial_pid);
  46. exit (1);
  47. }
  48. pthread_t th;
  49. if (pthread_create (&th, NULL, tf, NULL) != 0)
  50. {
  51. puts ("pthread_create failed");
  52. exit (1);
  53. }
  54. void *result;
  55. if (pthread_join (th, &result) != 0)
  56. {
  57. puts ("pthread_join failed");
  58. exit (1);
  59. }
  60. exit (result == NULL ? 0 : 1);
  61. }
  62. else if (child == -1)
  63. {
  64. puts ("initial fork failed");
  65. return 1;
  66. }
  67. int status;
  68. if (TEMP_FAILURE_RETRY (waitpid (child, &status, 0)) != child)
  69. {
  70. printf ("waitpid failed: %m\n");
  71. return 1;
  72. }
  73. return status;
  74. }
  75. #else
  76. int main(void)
  77. {
  78. printf("Skipping test on non-mmu host!\n");
  79. return 23;
  80. }
  81. #endif