Why pid of children is passed to the parent ?
suppose a process wants to teminate ,then generally,only its parents can invoke “abort ” system call otherwise users can arbitrarily kill each other’s jobs.A parent process therefore needs to know the identities of its children.Thus when one process creatres a new process, the identity of the newly created process is passed to the parent.
