创建共享内存源码
#include <stdio.h> #include <sys/shm.h> #include <unistd.h> #include <string.h> int main() { key_t key; // 用于打开指定的共享内存 int shm_id; // 共享内存id char *p; // 用于映射共享内存到进程空间 key = ftok("/dev/null", 0); shm_id = shmget(key, 6, IPC_CREAT|0666); p = (char *)shmat(shm_id, NULL, 0); memset(p, 'A', 6); shmdt(p); return 0; }
获取共享内存
#include <stdio.h> #include <sys/shm.h> #include <unistd.h> #include <string.h> int main() { key_t key; // 用于打开指定的共享内存 int shm_id; // 共享内存id char *p; // 用于映射共享内存到进程空间 key = ftok("/dev/null", 0); shm_id = shmget(key, 6, 0666); p = (char *)shmat(shm_id, NULL, 0); printf("%c %c %c %c %c %c\n", p[0], p[1], p[2], p[3], p[4], p[5]); shmdt(p); shmctl(shm_id, IPC_RMID, 0); return 0; }