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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/types.h>
// Define the message structure
struct msg_buffer {
long msg_type;
char msg_text[100];
};
void print_queue_times(int msgid) {
struct msqid_ds info;
if (msgctl(msgid, IPC_STAT, &info) == -1) {
perror("msgctl IPC_STAT failed");
exit(1);
}
printf("Last send time (msg_stime): %s", ctime(&info.msg_stime));
printf("Last recv time (msg_rtime): %s", ctime(&info.msg_rtime));
printf("Last change time (msg_ctime): %s", ctime(&info.msg_ctime));
}
int main() {
key_t key;
int msgid;
struct msqid_ds buf;
// Generate a unique key
key = ftok("progfile", 65);
// Create a message queue and return its id
msgid = msgget(key, 0666 | IPC_CREAT);
if (msgid == -1) {
perror("msgget failed");
exit(EXIT_FAILURE);
}
// Prepare message to send
struct msg_buffer message;
message.msg_type = 1;
strcpy(message.msg_text, "Hello from message queue!");
// Send the message
if (msgsnd(msgid, &message, sizeof(message.msg_text), 0) < 0) {
perror("msgsnd failed");
exit(EXIT_FAILURE);
}
printf("Message sent: %s\n", message.msg_text);
print_queue_times(msgid); // Show msg_stime after sending
// Get information about the message queue
if (msgctl(msgid, IPC_STAT, &buf) == -1) {
perror("msgctl - IPC_STAT failed");
exit(EXIT_FAILURE);
}
// Print some info from the msqid_ds structure
printf("Message queue ID: %d\n", msgid);
// Receive the message
struct msg_buffer received;
if (msgrcv(msgid, &received, sizeof(received.msg_text), 1, 0) < 0) {
perror("msgrcv failed");
exit(EXIT_FAILURE);
}
printf("Message received: %s\n", received.msg_text);
print_queue_times(msgid); // Show msg_stime after receiving
// Remove the message queue
if (msgctl(msgid, IPC_RMID, NULL) == -1) {
perror("msgctl - IPC_RMID failed");
exit(EXIT_FAILURE);
}
printf("Message queue removed successfully.\n");
return 0;
}
|