Introduction to Process API
This lesson gives a brief introduction to the chapter and its contents.
We'll cover the following...
In this interlude, we discuss process creation in UNIX systems. UNIX presents one of the most intriguing ways to create a new process with a pair of system calls: fork()
and exec()
. A third routine, ...