feat: minor changes

This commit is contained in:
2025-10-10 14:06:07 +03:00
parent 5dbe188b08
commit 1ecce31da4
3 changed files with 27 additions and 41 deletions

14
OSs/lab6/common.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef COMMON_H_
#define COMMON_H_
#define MQ_KEY1 1234L
#define MQ_KEY2 2345L
#define MAXMESGDATA 4096
struct msg {
long mesg_len;
long mesg_type;
char mesg_data[MAXMESGDATA];
};
#endif