- 论坛徽章:
- 0
|
本帖最后由 古兮之 于 2010-05-04 20:21 编辑
#include<sys/types.h>
#include<stdio.h>
#include<sys/ipc.h>
#include<sys/msg.h>
#include<string.h>
#include<unistd.h>
#define MSGKEY 75
struct msgbuf {
long mtype; /* message type, must be > 0 */
char mtext[3]; /* message data */
};
int main(){
pid_t pid , pid_1;
int msg_queue_ID,msgtyp=10;
struct msgbuf *msgp,*msgsend;
pid = fork();
if(pid > 0){
sleep(1);
while((pid_1 = fork())==-1);
printf("fork 成功!\n");
if(pid_1==0){
//client
printf("ok");//!这里不执行,进不去!!!!不知道为何原因
msg_queue_ID = msgget(MSGKEY,IPC_CREAT|0666);
msgsend->mtext[0]='a';
msgsend->mtext[1]='b';
msgsend->mtext[2]='c';
int i = 10;
while(i>=1){
msgsend->mtype=i;
msgtyp = i;
if(msgsnd(msg_queue_ID,msgsend,strlen(msgsend->mtext)+1,0)){
printf("send error!\n");
}else{
printf("Client has sent message to Server---type %d!\n",msgtyp);
}
i--;
}
_exit(0);
}
}else if(pid == 0){
//server 接受消息
printf("aaaa");
msg_queue_ID = msgget(MSGKEY,IPC_CREAT|0666);
if(msgtyp==1){
//取消该队列
struct msqid_ds *buf ;
msgctl(msg_queue_ID,IPC_RMID,buf);
_exit(0);
}else{
if(msgrcv(msg_queue_ID,msgp,1024,3,0)){
printf("Server has received message from Client!\n");
}
}
}
wait(NULL);
return 0;
}
谢谢大家了,看了好久。。。也没个头绪。 |
|