Re: Forking in kernel

2004-11-22 Thread Manish Regmi
On Mon, 22 Nov 2004 14:30:46 +0530, Jagadeesh Bhaskar P <[EMAIL PROTECTED]> wrote: > > BTW: > > Linux Kernel is better discussed in kernelnewbies site. > > www.kernelnewbies.org > > I had seen this site. But didnt get which address to subscribe for and > which to post the queries. Can u help me o

Re: Forking in kernel

2004-11-22 Thread Jagadeesh Bhaskar P
I read that the init process is the first actual process to run, and it spawns all other processes even including the shell. So I wanted to explore the same aspect, and study what happens in such a case, like, zombie process and all!! So is that possible to be done On Mon, 2004-11-22 at 13:48, Man

Forking in kernel

2004-11-21 Thread Jagadeesh Bhaskar P
Hi, How can I fork a new process at the kernel level, say, as in a module? When compiling a module with a fork() function inside it, it will get complied as gcc -o ... -c ... -D__KERNEL__ But it says unresolved symbol fork() during insmod-ing. Is there a kernel level compliment for fork and clone