I have searched a lot for a solution to this particular problem from the
exercises section of "The Design of the Unix Operating System" by Maurice
Bach.I will be very thankful if anybody can please tell me what will happen
in the kernel (Unix System V) when the following program is executed.

#include<stdio.h>

int main()
{
       int i;
       f();
       g();
}



f()
{
       vfork();
}

g()
{
       int blast[100];
       int i;
       for(i = 0;i < 100;i++)
       {
               blast[i] = i;
       }


Thanks in Advance.

P.S. -> This is not my homework I am asking you to do.So please...
--
Regards,
Ashutosh Adkar
--
______________________________________________________________________
Pune GNU/Linux Users Group Mailing List:      ([email protected])
List Information:  http://plug.org.in/cgi-bin/mailman/listinfo/plug-mail
Send 'help' to [EMAIL PROTECTED] for mailing instructions.

Reply via email to