1)要求AB进程做通信
-
A进程任意时刻发送一句话,B进程接收打印
-
B进程任意时刻发送给A进程一句话,A进程接收打印
-
、直到A进程或者B进程收到quit,退出AB进程;
A进程
#include <stdio.h>
#include <sys/ipc.h>
#include <sys/types.h>
#include <pthread.h>
#include <sys/msg.h>
#include <string.h>
#include <stdlib.h>
//消息包结构体
typedef struct
{
long mtype;
char mtext[128];
}msgbuf;
void* callBack_w(void* arg)
{
key_t key = *(key_t*)arg;
//创建消息队列
int msqid = msgget(key,IPC_CREAT|0664);
if(msqid < 0)
{
perror("msgget");
return NULL;
}
//创建消息包
msgbuf snd;
snd.mtype = 1; //发送类型是1
while(1)
{
printf("A进程输入>>>");
fgets(snd.mtext,sizeof(snd.mtext),stdin);
snd.mtext[strlen(snd.mtext)-1] = '\0';
//发送消息包
if(msgsnd(msqid,&snd,sizeof(snd.mtext),0) < 0)
{
perror("msgsnd");
return NULL;
}
//退出
if(strcasecmp(snd.mtext,"quit") == 0)
{
printf("A程序退出\n");
exit(0);
}
}
}
void* callBack_r(void *arg)
{
key_t key = *(key_t*)arg;
//创建消息队列
int msqid = msgget(key,IPC_CREAT|0664);
if(msqid < 0)
{
perror("msgget");
return NULL;
}
//接收消息包
msgbuf rcv;
ssize_t res = 0;
while(1)
{
res = msgrcv(msqid,&rcv,sizeof(rcv.mtext),2,0);
if(res < 0)
{
perror("msgacv");
return NULL;
}
//退出
if(strcasecmp(rcv.mtext,"quit") == 0)
{
msgctl(msqid,IPC_RMID,NULL);
printf("A程序退出\n");
exit(0);
}
printf("接收到B进程的信息:%s\n",rcv.mtext);
}
}
int main(int argc, const char *argv[])
{
printf("A进程\n");
//计算key
key_t key = ftok("./",1);
if(key < 0)
{
perror("ftok");
return -1;
}
//创建线程
pthread_t tid1,tid2;
if(pthread_create(&tid1,NULL,callBack_w,(void*)&key) != 0)
{
perror("pthread_create");
return -1;
}
if(pthread_create(&tid2,NULL,callBack_r,(void*)&key) != 0)
{
perror("pthread_create");
return -1;
}
pthread_join(tid1,NULL);
pthread_join(tid2,NULL);
return 0;
}
B进程
#include <stdio.h>
#include <sys/ipc.h>
#include <sys/types.h>
#include <pthread.h>
#include <sys/msg.h>
#include <string.h>
#include <stdlib.h>
//消息包结构体
typedef struct
{
long mtype;
char mtext[128];
}msgbuf;
void* callBack_w(void* arg)
{
key_t key = *(key_t*)arg;
//创建消息队列
int msqid = msgget(key,IPC_CREAT|0664);
if(msqid < 0)
{
perror("msgget");
return NULL;
}
//创建消息包
msgbuf snd;
snd.mtype = 2; //发送类型是1
while(1)
{
printf("B进程输入>>>");
fgets(snd.mtext,sizeof(snd.mtext),stdin);
snd.mtext[strlen(snd.mtext)-1] = '\0';
//发送消息包
if(msgsnd(msqid,&snd,sizeof(snd.mtext),0) < 0)
{
perror("msgsnd");
return NULL;
}
//退出
if(strcasecmp(snd.mtext,"quit") == 0)
{
printf("B程序退出\n");
exit(0);
}
}
}
void* callBack_r(void *arg)
{
key_t key = *(key_t*)arg;
//创建消息队列
int msqid = msgget(key,IPC_CREAT|0664);
if(msqid < 0)
{
perror("msgget");
return NULL;
}
//接收消息包
msgbuf rcv;
ssize_t res = 0;
while(1)
{
res = msgrcv(msqid,&rcv,sizeof(rcv.mtext),1,0);
if(res < 0)
{
perror("msgacv");
return NULL;
}
//退出
if(strcasecmp(rcv.mtext,"quit") == 0)
{
msgctl(msqid,IPC_RMID,NULL);
printf("B程序退出\n");
exit(0);
}
printf("接收到A进程的信息:%s\n",rcv.mtext);
}
}
int main(int argc, const char *argv[])
{
printf("B进程\n");
//计算key
key_t key = ftok("./",1);
if(key < 0)
{
perror("ftok");
return -1;
}
//创建线程
pthread_t tid1,tid2;
if(pthread_create(&tid1,NULL,callBack_w,(void*)&key) != 0)
{
perror("pthread_create");
return -1;
}
if(pthread_create(&tid2,NULL,callBack_r,(void*)&key) != 0)
{
perror("pthread_create");
return -1;
}
pthread_join(tid1,NULL);
pthread_join(tid2,NULL);
return 0;
}
-
A进程写入一个整型,在该整型后,写入一个字符串
-
B进程将共享内存中的整型以及字符串读取出来
A进程
#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <string.h>
int main(int argc, const char *argv[])
{
//计算key
key_t key = ftok("./",1);
if(key < 0)
{
perror("ftok");
return -1;
}
//创建共享内存
int shmid = shmget(key,128,IPC_CREAT|0664);
if(shmid < 0)
{
perror("shmget");
return -1;
}
//映射
void* pi;
pi = shmat(shmid,NULL,0);
if(pi == (void*)-1)
{
perror("shmat");
return -1;
}
printf("输入整形>>>");
scanf("%d",(int*)pi);
printf("输入字符串>>>");
scanf("%s",(char*)((int*)pi+1));
return 0;
}
B进程
#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <string.h>
int main(int argc, const char *argv[])
{
//计算key
key_t key = ftok("./",1);
if(key < 0)
{
perror("ftok");
return -1;
}
//创建共享内存
int shmid = shmget(key,128,IPC_CREAT|0664);
if(shmid < 0)
{
perror("shmget");
return -1;
}
//映射
void* pi;
pi = shmat(shmid,NULL,0);
if(pi == (void*)-1)
{
perror("shmat");
return -1;
}
printf("%d\n",*(int*)pi);
printf("%s\n",(char*)((int*)pi+1));
return 0;
}