what is the process id for kernel process?
Answers were Sorted based on User's Feedback
Answer / vinoth
The Process id are sequentially numbered and the first process id created is ' PID 0', which loads the data structures and resources of Kernel which also forks the next process "INIT" which has the process id '1'.
Is This Answer Correct ? | 8 Yes | 3 No |
Answer / kiran
EVERY PROCESS HAS ONE UNIQUE ID CALLED PROCESS ID
Is This Answer Correct ? | 10 Yes | 13 No |
Answer / mohd imran
iwant to who command botting time excuted
plese tell me.
thenk you.
Is This Answer Correct ? | 11 Yes | 22 No |
What are the process states in Unix?
What is Inode.
What is IPC? What are the various schemes available?
Which ipc is the fastest in unix?
What is a zombie?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
Explain fork() system call?
What Happens when you execute a command?
What is an advantage of executing a process in background?
Explain about daemon?
How to get or set an environment variable from a program?
Predict the output of the following program code main() { fork(); printf("Hello World!"); }