/**
* Message queue variables
*/
-key_t qkey;
-int qid_input;
-
-int qid_output1;
-int qid_output2;
+key_t qkey = 12356;
+int qid;
struct queue_message {
long mtype;
if (i != 0 && pid != 0) {
msg.mtype = i+1;
fprintf(stderr, "[%s] Sending message of type (%d) with value %d\n", "process1", msg.mtype, msg.signo[0]);
- msgsnd(pid, &msg, sizeof(int), 0);
+ msgsnd(qid, &msg, sizeof(int), 0);
fprintf(stderr, "[%s] Sending signal %s (%d) to PID: %d\n", "process1", strsignal(SIGUSR1), SIGUSR1, pid);
kill(pid, SIGUSR1);
}
fprintf(stderr, "[%s] > Notified!\n", "process1");
struct queue_message msg;
/* Check queues from both other processes */
- if (msgrcv(processes->pids[1], &msg, sizeof(int), 1, 0) > 0) {
+ if (msgrcv(qid, &msg, sizeof(int), 1, 0) > 0) {
fprintf(stderr, "[%s] > Notified with value: %s!\n", "process1", strsignal(msg.signo[0]));
raise(msg.signo[0]);
- break;
}
- else if (msgrcv(processes->pids[2], &msg, sizeof(int), 1, 0) > 0) {
+ else if (msgrcv(qid, &msg, sizeof(int), 1, 0) > 0) {
fprintf(stderr, "[%s] > Notified with value: %s!\n", "process1", strsignal(msg.signo[0]));
raise(msg.signo[0]);
- break;
}
}
else if (signo == SIGTERM) {
/**
* Register message queue to communicate with other processes
*/
- qkey = getpid();
- qid_input = msgget(qkey, IPC_CREAT | 0666);
-
- qid_output1 = msgget(processes->pids[1], IPC_CREAT | 0666);
- qid_output2 = msgget(processes->pids[2], IPC_CREAT | 0666);
+ qid = msgget(qkey, IPC_CREAT | 0666);
mkfifo(write_pipe, 0666);
/**
* Message queue variables
*/
-key_t qkey;
-int qid_input;
-
-int qid_output1;
-int qid_output2;
+key_t qkey = 12356;
+int qid;
struct queue_message {
long mtype;
if (i != 1 && pid != 0) {
msg.mtype = i+1;
fprintf(stderr, "[%s] Sending message of type (%d) with value %d\n", "process1", msg.mtype, msg.signo[0]);
- msgsnd(pid, &msg, sizeof(msg), 0);
+ msgsnd(qid, &msg, sizeof(msg), 0);
fprintf(stderr, "[%s] Sending signal %s (%d) to PID: %d\n", "process2", strsignal(SIGUSR1), SIGUSR1, pid);
kill(pid, SIGUSR1);
}
fprintf(stderr, "[%s] > Notified!\n", "process2");
struct queue_message msg;
/* Check queues from both other processes */
- if (msgrcv(processes->pids[0], &msg, sizeof(int), 2, 0) > 0) {
+ if (msgrcv(qid, &msg, sizeof(int), 2, 0) > 0) {
fprintf(stderr, "[%s] > Notified with value: %s!\n", "process2", strsignal(msg.signo[0]));
raise(msg.signo[0]);
- break;
}
- else if (msgrcv(processes->pids[2], &msg, sizeof(int), 2, 0) > 0) {
+ else if (msgrcv(qid, &msg, sizeof(int), 2, 0) > 0) {
fprintf(stderr, "[%s] > Notified with value: %s!\n", "process2", strsignal(msg.signo[0]));
raise(msg.signo[0]);
- break;
}
}
else if (signo == SIGTERM) {
/**
* Register message queue to communicate with other processes
*/
- qkey = getpid();
- qid_input = msgget(qkey, IPC_CREAT | 0666);
-
- qid_output1 = msgget(processes->pids[1], IPC_CREAT | 0666);
- qid_output2 = msgget(processes->pids[2], IPC_CREAT | 0666);
+ qid = msgget(qkey, 0666);
/* Reading from process1 */
read_descriptor = open(read_pipe, O_RDONLY);
/**
* Message queue variables
*/
-key_t qkey;
-int qid_input;
-
-int qid_output1;
-int qid_output2;
+key_t qkey = 12356;
+int qid;
struct queue_message {
long mtype;
if (i != 2 && pid != 0) {
msg.mtype = i+1;
fprintf(stderr, "[%s] Sending message of type (%d) with value %d\n", "process3", msg.mtype, msg.signo[0]);
- msgsnd(pid, &msg, sizeof(int), 0);
+ msgsnd(qid, &msg, sizeof(int), 0);
fprintf(stderr, "[%s] Sending signal %s (%d) to PID: %d\n", "process3", strsignal(SIGUSR1), SIGUSR1, pid);
kill(pid, SIGUSR1);
}
*/
void sig_handler(int signo)
{
- fprintf(stderr, "[%s] Received !\n", "process3");
+ fprintf(stderr, "[%s] Received %s!\n", "process3", strsignal(signo));
if (signo == SIGUSR1) {
fprintf(stderr, "[%s] > Notified!\n", "process3");
struct queue_message msg;
/* Check queues from both other processes */
- if (msgrcv(processes->pids[0], &msg, sizeof(int), 3, 0) > 0) {
+ if (msgrcv(qid, &msg, sizeof(int), 3, 0) > 0) {
fprintf(stderr, "[%s] > Notified with value: %s!\n", "process3", strsignal(msg.signo[0]));
raise(msg.signo[0]);
- break;
}
- else if (msgrcv(processes->pids[1], &msg, sizeof(int), 3, 0) > 0) {
+ else if (msgrcv(qid, &msg, sizeof(int), 3, 0) > 0) {
fprintf(stderr, "[%s] > Notified with value: %s!\n", "process3", strsignal(msg.signo[0]));
raise(msg.signo[0]);
- break;
}
}
else if (signo == SIGTERM) {
/**
* Register message queue to communicate with other processes
*/
- qkey = getpid();
- qid_input = msgget(qkey, IPC_CREAT | 0666);
-
- qid_output1 = msgget(processes->pids[1], IPC_CREAT | 0666);
- qid_output2 = msgget(processes->pids[2], IPC_CREAT | 0666);
+ qid = msgget(qkey, 0666);
/* Reading from process2 */
read_descriptor = open(read_pipe, O_RDONLY);