-
Notifications
You must be signed in to change notification settings - Fork 0
/
uzenet.c
38 lines (34 loc) · 997 Bytes
/
uzenet.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <stdio.h> // printf
#include <stdlib.h> // exit
#include <unistd.h> // getpid
#include <sys/msg.h> // msgsnd, msgrcv
#include <string.h> // strlen
#include "uzenet.h"
int uzenetsor_letrehoz(key_t kulcs){
int uzenetsor = msgget(kulcs, 0600 | IPC_CREAT);
if (uzenetsor < 0){
printf("Hiba az %d uzenetsor letrehozaskor", uzenetsor);
exit(EXIT_FAILURE);
}
return uzenetsor;
}
void uzenet_kuld(int uzenetsor, const char message[1024]) {
struct uzenet uz;
uz.mtype = 5,
strcpy(uz.mtext, message);
int status;
status = msgsnd( uzenetsor, &uz, strlen ( uz.mtext ) + 1 , 0 );
if (status < 0){
perror("msgsnd");
}
}
void uzenet_fogad(int uzenetsor){
struct uzenet uz;
int status;
status = msgrcv(uzenetsor, &uz, 1024, 5, 0 );
if (status < 0){
perror("msgsnd");
}else{
printf("%d folyamat %ld kódú üzenetet kapott: %s\n",getpid(), uz.mtype, uz.mtext);
}
}