Discussion:
The size of M
(too old to reply)
Kwang Yul Seo
2005-09-09 02:53:54 UTC
Permalink
Hi,

Do I need to put some messages when spawn.exe successfully spawans
a process?

Print("Spawing %s pid = [%d]\n", program, pid[i]);

However, if I put this message, I can't spwan 10 processes because
it reaches the maximum number of syscalls when 4-5 processes are
spawned.

Is this okay?
Michael Hicks
2005-09-09 14:36:14 UTC
Permalink
Post by Kwang Yul Seo
Hi,
Do I need to put some messages when spawn.exe successfully spawans
a process?
Print("Spawing %s pid = [%d]\n", program, pid[i]);
Please do not print such a message (the project spec doesn't ask you to do
so, which in general means you shouldn't do it).

-Dr. Hicks

Loading...