Created
June 24, 2015 21:44
-
-
Save shichao-an/5cb7ed8df3666337a292 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sys/types.h> | |
#include <sys/wait.h> | |
#include <sys/time.h> | |
#include <sys/resource.h> | |
pid_t wait3(int *statloc, int options, struct rusage *rusage); | |
pid_t wait4(pid_t pid, int *statloc, int options, struct rusage *rusage); | |
/* Both return: process ID if OK, 0, or −1 on error */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment