Operations on Process in OS
One can perform two operations on a process in OS:
1. Process creation
2. Process Termination
A process during its execution can create many new processes
/**/
One can perform two operations on a process in OS:
1. Process creation
2. Process Termination
A process during its execution can create many new processes
A scheduler selects one out of many available processes for execution by the CPU. There are different types of schedulers in operating system – long, short
Have you ever executed a process? Have your process changed states? In this post, we going to cover the notion of a process and process states. We will understand: what is a process? How to convert your program into a process? What are the different states of a process? and Where all the information related …
If you are a programmer, you create a program by writing a code and when you run that program it becomes a process. It is very important to have a clear difference between a program and a process because one program can produce many running processes that are just different versions of a single program.