fork()
fork()
used to create a child process in the image of the parent process
wait()
wait()
Blocks the calling process until its child process exits or signal is recieved
execve()
execve()
Executes the program pointed to by the
exit()
exit()
Terminates the current process and performs a cleanup afterwards
kill(sig,PID)
kill(sig,PID)
Send a signal to another process to terminate it