Changes between Version 71 and Version 72 of processus_thread
- Timestamp:
- Jan 11, 2018, 12:02:47 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
processus_thread
v71 v72 19 19 * The '''LOCAL_ROOT''' is the local list of all process descriptors in cluster K. A process descriptor copy of P is present in K, as soon as P has a thread in cluster K. 20 20 21 A process can be in four states: 22 * '''RUNNING''' : the process is normally executing. 23 * '''STOPPED''' : the process received a SIGSTOP signal. It can return to RUNNING state by a SIGCONT signal. 24 * '''EXITED''' : the process terminated by an exit() syscall. It will be destroyed by the parent process executing a wait() syscall. 25 * '''KILLED''' : the process received a SIGKILL signal. It will be destroyed by the parent process executing a wait() sys call. 26 21 27 There is a partial list of informations stored in a process descriptor ( process_t in ALMOS-MKH ): 22 28 - '''PID''' : proces identifier. 23 29 - '''PPID''' : parent process identifier, 24 30 - '''PREF''' : extended pointer on the reference process descriptor. 31 - '''STATE''': current process state. 25 32 - '''VSL''' : root of the local list of virtual segments defining the memory image. 26 33 - '''GPT''' : generic page table defining the physical memory mapping.