行程
维基百科,自由的百科全书
行程 | |
---|---|
電腦科學譯名 | |
英文: | Process |
臺譯: | 行程 |
港譯: | |
中譯: | 进程 |
目录 |
[编辑] 名稱
- 整批系統環境,行程稱為工作(jobs)。
- 分時系統環境,行程稱為使用者程式(user progams)或任務(tasks)。
- 在多數情況,工作與行程是同義詞,但行程(process)已較為人接受
[编辑] 概念
使用者下達執行程式的命令後,就會產生行程。同一程式可產生多個行程(一對多關係),以允許同時有多位使用者執行同一程式,卻不會相衝突。
行程需要一些資源才能完工作,如CPU使用時間、記憶體、檔案以及I/O裝置,且為依序逐一進行,也就是任何時間內僅能執行一項行程。
[编辑] 內容
作業系統行程多有以下內容:
- Memory, (typically a region of virtual memory for suspended processes) which contains executable code or task-specific data.
- Operating system resources that are allocated to the process, such as file descriptors (Unix terminology) or handles (Windows).
- Security attributes, such as the process owner and the process's set of permissions.
- Processor state (context), such as the content of registers, physical memory addressing, etc. The state is stored in the actual registers when the process is executing, and in memory otherwise.
[编辑] 狀態
行程在執行時,狀態(state)會改變。所謂狀態,就是指行程目前的動作:
- 新生(new):行程新產生中。
- 執行(running):正在執行。
- 等待(wating):等待某事發生,例如等待使用者輸入完成。
- 就緒(ready):排班中,等待CPU。
- 結束(terminated):完成執行。
各狀態名稱可能隨不同作業系統而相異;任何時間可能有多個行程為等待、就緒,但必定僅有一個行程在執行。
[编辑] 行程控制表
參見行程控制表。
[编辑] 執行緒
參見執行緒。
[编辑] 排程
參見排程。
[编辑] 行程間通訊
參見行程間通訊。