共享内存

Posted 自由石匠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了共享内存相关的知识,希望对你有一定的参考价值。

 1 #include<stdio.h>
 2 #include <sys/ipc.h>
 3 #include <sys/types.h>
 4 #include <sys/shm.h>
 5 #include <errno.h>
 6 #include <stdlib.h>
 7 #include <string.h>
 8 
 9 int main()
10 {
11  key_t key;
12  int shmid;
13 }

 

以上是关于共享内存的主要内容,如果未能解决你的问题,请参考以下文章