libcfe  0.12.1
some useful C-functions
msgqueue.h
Go to the documentation of this file.
1 #ifndef XMSGQUEUE_H
2 #define XMSGQUEUE_H
3 
5 #define MSG_PRIORITY 1
6 #define MSG_NOBLOCK 2
7 
8 
22 int send_message(int qid, int type, char *msg, int len, short flag);
23 
31 int receive_message(int qid, int type, char **msg);
32 
40 int remove_queue(int qid);
41 
46 int create_queue(void);
47 
48 #endif /* XMSGQUEUE_H */
int create_queue(void)
Definition: msgqueue.c:116
int receive_message(int qid, int type, char **msg)
Definition: msgqueue.c:86
int remove_queue(int qid)
Definition: msgqueue.c:106
int send_message(int qid, int type, char *msg, int len, short flag)
Definition: msgqueue.c:24