58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
// System V message queues: reads from a message queue, sends back
|
|
// response
|
|
//
|
|
// Based on: http://beej.us/guide/bgipc/output/html/multipage/mq.html
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/msg.h>
|
|
#include <string.h>
|
|
|
|
struct my_msgbuf {
|
|
long mtype;
|
|
char mtext[200];
|
|
};
|
|
|
|
int main(void){
|
|
// Get a unique IPC key based on a file name
|
|
key_t key = ftok("kirk.c", 'B');
|
|
if(key == -1){
|
|
perror("ftok");
|
|
exit(1);
|
|
}
|
|
|
|
// Connect to message queue based on the key provided
|
|
int msqid = msgget(key, 0644 | IPC_CREAT);
|
|
if(msqid == -1) {
|
|
perror("msgget");
|
|
exit(1);
|
|
}
|
|
|
|
printf("spock: ready to receive messages, captain.\n");
|
|
|
|
// Spock never quits: forever wait for messages in the queue
|
|
struct my_msgbuf buf;
|
|
for(;;) {
|
|
int received = msgrcv(msqid, &buf, sizeof buf.mtext, 0, 0);
|
|
if (received == -1) {
|
|
perror("msgrcv");
|
|
exit(1);
|
|
}
|
|
printf("spock: \"%s\"\n", buf.mtext);
|
|
|
|
// Respond to the message
|
|
strcpy(buf.mtext,"Acknowledged, Captain.");
|
|
int len = strlen(buf.mtext);
|
|
int sent = msgsnd(msqid, &buf, len+1, 0);
|
|
if (sent == -1){
|
|
perror("msgsnd");
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|