- Mastering Linux Kernel Development
- Raghu Bharadwaj
- 51字
- 2021-07-08 09:47:19
vfork()
Unlike fork(), vfork() creates a child process and blocks the parent, which means that the child runs as a single thread and does not allow concurrency; in other words, the parent process is temporarily suspended until the child exits or call exec(). The child shares the data of the parent.
推薦閱讀
- Learning LibGDX Game Development(Second Edition)
- LaTeX Cookbook
- Spring 5企業(yè)級開發(fā)實戰(zhàn)
- 實戰(zhàn)Java程序設計
- Getting Started with Laravel 4
- Hands-On Full Stack Development with Go
- Python Web數(shù)據(jù)分析可視化:基于Django框架的開發(fā)實戰(zhàn)
- C#實踐教程(第2版)
- 從零開始學Linux編程
- Scratch·愛編程的藝術家
- Everyday Data Structures
- Android Game Programming by Example
- Java高并發(fā)編程詳解:深入理解并發(fā)核心庫
- Java高手是怎樣煉成的:原理、方法與實踐
- PostgreSQL 12 High Availability Cookbook