What are the process states in Unix?
Answers were Sorted based on User's Feedback
Answer / vijay
we have only
1) Running(ready to run)
2) stopped
3) suspended( sleep)
4) zombie
Is This Answer Correct ? | 33 Yes | 8 No |
Answer / ssathishmurugan
1,user running,
2,kernel running,
3,ready to run in memory
4,ready to run in swap area
5,blocked, but process in memory
6,blocked, but process in swap area and
7,zombie
Is This Answer Correct ? | 20 Yes | 8 No |
Answer / priyanka sial
The states of process defines the condition of the process
in the phases of execution.
Processes have different states:
1. Ready state
2. Runnung state
3. Waiting state
4. Finished state.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / upendar
As a process executes it changes state according
to its circumstances. Unix processes have the following states:
Running : The process is either running or it is ready
to run .
Waiting : The process is waiting for an event or for a resource.
Stopped : The process has been stopped, usually by receiving a signal.
Zombie : The process is dead but have not been removed from the process table.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / sumit
1.The running or ready to run state.
2.waiting state for any event or resource.
3.stopped by any signal or event.
4.zombie state process execution completted but information
stiil in precess table for parent process
Is This Answer Correct ? | 7 Yes | 5 No |
Answer / julius nyerere kawemba
As a process executes it changes state according to its
circumstances. Unix processes have the following states:
1.Running : The process is either running or it is ready to
run .
2.Waiting : The process is waiting for an event or for a
resource.
3.Stopped : The process has been stopped, usually by
receiving a signal.
4.Zombie : The process is dead but have not been removed
from the process table.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anuj
1.Runnable
2.Sleeping
3.wake up
4.suspended
5.zombie
6.orphan
Is This Answer Correct ? | 2 Yes | 3 No |
Please describe the initial process sequence while the system boots up?
Explain what are the system calls used for process management?
Explain the initial process sequence while the system boots up?
What is a zombie?
How to get or set an environment variable from a program?
What are the system calls used for process management:
Please explain fork() system call?
Max relax-able permission value with out giving write permission to others?
How to know whether the message queue is empty or not.
What are two different models of ipc differentiate both?
How to write the program on full-duplex communication on biderctional(e.g using two pipes)
Explain what is the process id for kernel process?