6.编写生产者、消费者程序。 (1)消费者程序中创建一个共享内存段,并将其中的内容显示出来; (2)生产者连接到一个已有的共享内存段,并允许向其中写入数据。
时间: 2024-01-22 13:21:29 浏览: 59
pc.zip_生产者 消费者_生产者与消费者_生产者消费者
以下是一个简单的生产者、消费者程序,使用共享内存实现:
生产者程序:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/shm.h>
#define SHM_SIZE 1024 // 共享内存大小
int main(void) {
int shmid;
char *shmaddr;
// 创建共享内存段
shmid = shmget((key_t)1234, SHM_SIZE, 0666|IPC_CREAT);
if (shmid == -1) {
perror("shmget");
exit(1);
}
// 连接共享内存段
shmaddr = shmat(shmid, (void*)0, 0);
if (shmaddr == (void*)-1) {
perror("shmat");
exit(1);
}
// 写入数据到共享内存段
sprintf(shmaddr, "Hello, world!");
// 断开连接
if (shmdt(shmaddr) == -1) {
perror("shmdt");
exit(1);
}
return 0;
}
```
消费者程序:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/shm.h>
#define SHM_SIZE 1024 // 共享内存大小
int main(void) {
int shmid;
char *shmaddr;
// 连接共享内存段
shmid = shmget((key_t)1234, SHM_SIZE, 0666);
if (shmid == -1) {
perror("shmget");
exit(1);
}
// 连接共享内存段
shmaddr = shmat(shmid, (void*)0, 0);
if (shmaddr == (void*)-1) {
perror("shmat");
exit(1);
}
// 显示共享内存段中的内容
printf("%s\n", shmaddr);
// 断开连接
if (shmdt(shmaddr) == -1) {
perror("shmdt");
exit(1);
}
return 0;
}
```
注意,在生产者程序中创建共享内存段时,要指定 `IPC_CREAT` 标志来创建共享内存段。在消费者程序中连接共享内存段时,不要指定 `IPC_CREAT` 标志,否则会创建新的共享内存段而不是连接已有的共享内存段。
阅读全文