vfork.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * vfork test for uClibc
  4. *
  5. * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
  6. * Written by Erik Andersen <andersen@uclibc.org>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU Library General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  16. * for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public License
  19. * along with this program; if not, write to the Free Software Foundation,
  20. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <unistd.h>
  26. #include <sys/wait.h>
  27. #include <sys/types.h>
  28. int main(void)
  29. {
  30. pid_t pid;
  31. int status, wpid;
  32. char *argv[] = {
  33. "/bin/ls",
  34. "-laF",
  35. NULL,
  36. };
  37. clearenv();
  38. if ((pid = vfork()) == 0) {
  39. printf("Hi. I'm the child process...\n");
  40. execvp(argv[0], argv);
  41. _exit(0);
  42. }
  43. printf("Hello. I'm the parent process.\n");
  44. while (1) {
  45. wpid = wait(&status);
  46. if (wpid > 0 && wpid != pid) {
  47. continue;
  48. }
  49. if (wpid == pid)
  50. break;
  51. }
  52. printf("Child process exited.\nGoodbye.\n");
  53. return EXIT_SUCCESS;
  54. }
  55. /*
  56. Local Variables:
  57. c-file-style: "linux"
  58. c-basic-offset: 4
  59. tab-width: 4
  60. End:
  61. */