- Mastering Linux Kernel Development
- Raghu Bharadwaj
- 142字
- 2021-07-08 09:47:21
PID namespaces
Traditionally, *nix kernels (including Linux) spawn the init process with PID 1 during system boot, which in turn starts other user-mode processes and is considered the root of the process tree (all the other processes start below this process in the tree). The PID namespace allows a process to spin off a new tree of processes under it with its own root process (PID 1 process). PID namespaces isolate process ID numbers, and allow duplication of PID numbers across different PID namespaces, which means that processes in different PID namespaces can have the same process ID. The process IDs within a PID namespace are unique, and are assigned sequentially starting with PID 1.
PID namespaces are used in containers (lightweight virtualization solution) to migrate a container with a process tree, onto a different host system without any changes to PIDs.
- Instant Node Package Manager
- 精通Nginx(第2版)
- JavaScript前端開發模塊化教程
- Cocos2D-X權威指南(第2版)
- Learning Linux Binary Analysis
- Java 11 Cookbook
- HTML5入門經典
- 現代C++編程實戰:132個核心技巧示例(原書第2版)
- 小型編譯器設計實踐
- 響應式Web設計:HTML5和CSS3實戰(第2版)
- 機器學習微積分一本通(Python版)
- Visual Basic程序設計(第三版)
- Web Developer's Reference Guide
- 計算機應用技能實訓教程
- PhoneGap 4 Mobile Application Development Cookbook