home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / libiberty / waitpid.c < prev    next >
Encoding:
Text File  |  1995-05-01  |  178 b   |  12 lines

  1. int
  2. waitpid (pid, stat_loc, options)
  3.     int pid, *stat_loc, options;
  4. {
  5.   for (;;)
  6.     {
  7.       int wpid = wait(stat_loc);
  8.       if (wpid == pid || wpid == -1)
  9.     return wpid;
  10.     }
  11. }
  12.