Example
if (( result = fork()) == 0 ) {
// child code
if (execv (“new program”,..) < 0)
perror (“execv failed “);
exit(1);
}
else if (result < 0 ) perror (“fork”); …}
/* parent code */
Previous slide
Next slide
Back to first slide
View graphic version