Process Cheat Sheet
- pid_t fork(void);
- pid_t wait(int *status);
- pid_t waitpid(pid_t pid, int *status, int options);
- int execvp(const char *file, char *const argv[]);
- int execlp(const char *file, const char *arg, ...);
End of Process Cheat Sheet
Web Accessibility