-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathshmwrite.cpp
68 lines (57 loc) · 1.37 KB
/
shmwrite.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//
// Created by jxq on 19-8-13.
//
// p29 system v共享内存
#include <sys/ipc.h>
#include <sys/shm.h>
#include <iostream>
#include <string>
#include <errno.h>
#include <cstring>
using namespace std;
#define ERR_EXIT(m) \
do \
{ \
perror(m); \
exit(EXIT_FAILURE); \
} while (0);
struct student
{
char name[32];
int age;
};
int main(int argc, char** argv)
{
int shmid; // 共享内存标识符
// 创建共享内存
shmid = shmget((key_t)1234, sizeof(student), 0666 | IPC_CREAT);
if (shmid == -1)
{
ERR_EXIT("shmget");
}
// 第一次创建完共享内存时,它还不能被任何进程访问,shmat()函数的作用就是用来启动对该共享内存的访问,并把共享内存连接到当前进程的地址空间
// 将共享内存链接到当前进程的地址空间
void *shm = shmat(shmid, NULL, 0);
if (shm == (void *)-1)
{
ERR_EXIT("shmat");
}
// 设置共享内存
student *shared = (struct student*) shm;
strcpy(shared->name, "hello");
shared->age = 20;
while (true)
{
if (memcmp(shared->name, "quit", 4) == 0)
{
break;
}
}
// 把共享内存从当前进程中分离
if (shmdt(shm) == -1)
{
ERR_EXIT("shmdt");
}
shmctl(shmid, IPC_RMID, 0);
return 0;
}