diff --git a/minix/servers/pm/forkexit.c b/minix/servers/pm/forkexit.c index 683942443..121449bd5 100644 --- a/minix/servers/pm/forkexit.c +++ b/minix/servers/pm/forkexit.c @@ -112,7 +112,7 @@ int do_fork() /* Find a free pid for the child and put it in the table. */ new_pid = get_free_pid(); rmc->mp_pid = new_pid; /* assign pid to child */ - + printf("Minix: PID %d created\n", new_pid); memset(&m, 0, sizeof(m)); m.m_type = VFS_PM_FORK; m.VFS_PM_ENDPT = rmc->mp_endpoint;