30 likes | 60 Views
FOR MORE CLASSES VISIT<br>tutorialoutletdotcom <br><br>Lab #4 – Process Creation<br>In this lab, you will demonstrate your knowledge of process creation and manipulation.<br>You are required to write a C program (can just be main if you prefer) that uses fork,<br>execlp, and waitpid to create and control several processes. The program is to perform<br>the following tasks:<br>
E N D
Lab 4 Process Creation In this lab • FOR MORE CLASSES VISIT • tutorialoutletdotcom • Lab #4 – Process CreationIn this lab, you will demonstrate your knowledge of process creation and manipulation.You are required to write a C program (can just be main if you prefer) that uses fork,execlp, and waitpid to create and control several processes. The program is to performthe following tasks:1. The program is to create three processes: the original process (parent) is tocreate two child processes and one of those child processes is to create its ownchild (i.e. a grandchild of the original (parent) process).