Sleep
sleep()
is a system call that can make the process to sleep for a specified period.
By using sleep()
, parent can put to a suspended state and wait for the child. However, sleep()
is not desirable (we need to specify the time...).
Last updated