个人知识库
Author: 刘杰文, Date: Unknown, Categories: , Tags:
IPC(Inter-Process Communication),进程间通信。
| Approach | Wait Fetching Out | Copy Memory | Disorder in Calling | Far Distance Tranfer |
|---|---|---|---|---|
| Pipe | y | y | - | - |
| Message Queue | x | y | - | - |
| Shared Memory | x | x | y | x |
| Semaphore | x | x | x | x |
| Socket | x | - | - | y |
Note: ’-‘ is not sure. ’y’ is confirm. ’x’ is denial.