Submitted by Mi-K on Tuesday, May 1, 2012 - 6:39pm
The wait() syscall is often used with the fork() syscall.
Indeed, with the wait() syscall we can be sure that the child will be executed before the parent process.
In a trivial vision, this is like mutexes for threads.