add some additional output messages

This commit is contained in:
Stefan Lankes 2011-02-21 08:34:38 +01:00
parent c355adb300
commit 09a2ea194a

View file

@ -29,6 +29,7 @@ int main(int argc, char** argv)
{
pid_t pid = fork();
printf("Create child process...\n");
if (pid == 0) // child
printf("Hello from child process!\n");
else