Chinaunix首页 | 论坛 | 博客
  • 博客访问: 204045
  • 博文数量: 27
  • 博客积分: 1400
  • 博客等级: 上尉
  • 技术积分: 350
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-22 08:34
文章分类

全部博文(27)

文章存档

2011年(1)

2010年(1)

2009年(25)

我的朋友

分类: C/C++

2010-03-15 08:43:18

文件msg为空文件,可以为任何内容,这里只是为了ftok函数使用。程序通过建立消息队列,完成进程间通信,注意msgrcv的第四个参数为消息类型,他定义了从队列中取消息的类型。

下面是msgLucy.c,是建立消息队列的

#include
#include
#include
#include

#include
#include
#include
#include
#include

#define PROJID 0xFF
#define LUCY 1
#define PETER 2

int mqid;

void terminate_handler(int signo)
{
 msgctl(mqid,IPC_RMID,NULL);
 exit(0);
}

int main()
{
 char filenm[] = "msg";
 key_t mqkey;
 struct msgbuf
 {
      long mtype;      /* message type, must be > 0 */
    char mtext[256];  /* message data */
   }msg;
 int ret;

 mqkey = ftok(filenm,PROJID);
 if(mqkey == -1)
 {
  perror("ftok error: ");
  exit(-1);
 }

 mqid = msgget(mqkey,IPC_CREAT | IPC_EXCL | 0666);
 if(mqid == -1)
 {
  perror("msgget error: ");
  exit(-1);
 }

 signal(SIGINT, terminate_handler);
 signal(SIGTERM, terminate_handler);

 while(1)
 {
  printf("Lucy: ");
  fgets(msg.mtext, 256, stdin);
  if (strncmp("quit", msg.mtext, 4) == 0)
  {
   msgctl(mqid,IPC_RMID,NULL);
   exit(0);
  }
  msg.mtext[strlen(msg.mtext)-1] = '\0';
  msg.mtype = LUCY;
  msgsnd(mqid,&msg,strlen(msg.mtext) + 1,0);
  msgrcv(mqid,&msg,256,PETER,0);
  printf("Peter: %s\n", msg.mtext);  
 }  
}

下面的是msgPeter,是和Lucy通信的,程序先运行Lucy,再运行Peter

#include
#include
#include
#include

#include
#include
#include
#include
#include

#define PROJID 0xFF
#define LUCY 1
#define PETER 2

int main()
{
 char filenm[] = "msg";
 int mqid;
 key_t mqkey;
 struct msgbuf
 {
         long mtype;      /* message type, must be > 0 */
         char mtext[256];  /* message data */
   }msg;
 int ret;

 mqkey = ftok(filenm, PROJID);
 if(mqkey == -1)
 {
  perror("ftok error: ");
  exit(-1);
 }

 mqid = msgget(mqkey, 0);
 if(mqid == -1)
 {
  perror("msgget error: ");
  exit(-1);
 }

 while(1)
 {
  msgrcv(mqid,&msg,256,LUCY,0);
  printf("Lucy: %s\n",msg.mtext);
  printf("Peter: ");
  fgets(msg.mtext,256,stdin);
  if(strncmp("quit", msg.mtext, 4) == 0)
  {
   exit(0);
  }
  msg.mtext[strlen(msg.mtext)-1] = '\0';
  msg.mtype = PETER;
  msgsnd(mqid,&msg,strlen(msg.mtext) + 1,0);
 } 
}

阅读(2143) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~