wait.c 599 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #include <stdlib.h>
  7. #include <syscall.h>
  8. #include <sys/types.h>
  9. #include <sys/wait.h>
  10. #include <sys/resource.h>
  11. #ifdef __LINUXTHREADS_OLD__
  12. extern __typeof(wait) weak_function wait;
  13. strong_alias(wait,__libc_wait)
  14. #endif
  15. /* Wait for a child to die. When one does, put its status in *STAT_LOC
  16. * and return its process ID. For errors, return (pid_t) -1. */
  17. __pid_t wait(__WAIT_STATUS_DEFN stat_loc)
  18. {
  19. return wait4(WAIT_ANY, stat_loc, 0, NULL);
  20. }