wait.c 613 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. libc_hidden_proto(wait4)
  12. extern __typeof(wait) __libc_wait;
  13. /* Wait for a child to die. When one does, put its status in *STAT_LOC
  14. * and return its process ID. For errors, return (pid_t) -1. */
  15. __pid_t __libc_wait (__WAIT_STATUS_DEFN stat_loc)
  16. {
  17. return wait4 (WAIT_ANY, stat_loc, 0, (struct rusage *) NULL);
  18. }
  19. weak_alias(__libc_wait,wait)