This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<mqueue.h> | |
#include<string.h> | |
#include<fcntl.h> | |
#include<sys/stat.h> | |
#include<unistd.h> | |
#define MESSAGE_PRIO 0 | |
mqd_t MQDes; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<mqueue.h> | |
#include<string.h> | |
#include<fcntl.h> | |
#include<sys/stat.h> | |
#define MESSAGE_PRIO 0 | |
int main(void) | |
{ |