mirror of https://github.com/BOINC/boinc.git
7 lines
206 B
C
7 lines
206 B
C
|
#include <sys/msg.h>
|
||
|
|
||
|
extern int create_message_queue(key_t);
|
||
|
extern int receive_message(key_t,void*,size_t,bool);
|
||
|
extern int send_message(key_t,void*,size_t,bool);
|
||
|
extern int destroy_message_queue(key_t);
|