Linux system call

内存相关的 system call

system call function 说明 示例
shm open 使用 Shared Memory 方式的 IPC 进程使用此方法创建 shared memory,要相互通信的进程链接到此 FD(File Descripter) fd = shm open(name, O CREAT | O RDWR, 0666);