We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe999e5 commit 706ecabCopy full SHA for 706ecab
1 file changed
lec7/p1-process-overview.md
@@ -771,12 +771,14 @@ int main() {
771
772
##### 重新思考fork
773
774
-但是!
775
- Fork is no longer simple
776
- Fork encourages memory overcommit过度分配
777
- - Fork is incompatible with a single address space不兼容单一地址空间模型
778
- - Fork is incompatible with heterogeneous hardware-硬件环境错误
+ - Fork is incompatible with a single address space不兼容单一地址空间模型(嵌入式场景)
+ - Fork is incompatible with heterogeneous hardware-硬件环境错误(GPU)
779
- Fork infects an entire system-感染整个系统
+ - 多线程、锁机制难以有效处理
780
+ - 安全隐患:fork 炸弹(Fork Bomb):一个简单的无限循环 while(1) fork(); 就能瞬间创建大量进程
781
+
782
783
---
784
0 commit comments