What Happens when you execute a program? Ans. When you execute a program on your UNIX system, the system creates a special environment for that program. This environment contains everything needed for the system to run the program as if no other program were running on the system. Each process has process context, which is everything that is unique about the state of the program you are currently running. Every time you execute a program the UNIX system does a fork, which performs a series of operations to create a process context and then execute your program in that context. The steps include the following: 1. Allocate a slot in the process table, a list of currently running programs kept by UNIX. 2. Assign a unique process identifier (PID) to the process. 3. iCopy the context of the parent, the process that requested the spawning of the new process. 4. Return the new PID to the parent process. This enables the parent process to examine or control the process directly. After the fork is complete, UNIX runs your program. - Study24x7
Social learning Network
09 Mar 2023 06:47 PM study24x7 study24x7

What Happens when you execute a program? Ans. When you execute a program on your UNIX system, the system creates a special environment for that program. This environment contains everything needed for the system to run the program as if no other program were running on the syste...

See more

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles