Linux system call
CPU 相关的 syscall 函数
Linux System Call 的帮助文档包含在内核文档中,可以通过 man 2
查看对应的手册,如 man 2 fork
。
system call function | 说明 | 示例 |
---|---|---|
fork |
创建 Processes Linux 中的 fork 是通过封装了 clone 函数实现的 |
内存相关的 syscall
system call function | 说明 | 示例 |
---|---|---|
shm open |
使用 Shared Memory 方式的 IPC 进程使用此方法创建 shared memory ,要相互通信的进程链接到此 FD(File Descripter) |
fd = shm open(name, O CREAT | O RDWR, 0666); |