wait.c 547 B

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