1999-08-25 03:33:54 +02:00
|
|
|
#ifndef ISO
|
2001-01-25 09:10:36 +01:00
|
|
|
// should test for not an array type.
|
1999-08-25 03:33:54 +02:00
|
|
|
type mqd_t
|
|
|
|
|
|
|
|
type {struct sigevent}
|
|
|
|
|
|
|
|
type {struct mq_attr}
|
|
|
|
element {struct mq_attr} long mq_flags
|
|
|
|
element {struct mq_attr} long mq_maxmsg
|
|
|
|
element {struct mq_attr} long mq_msgsize
|
|
|
|
element {struct mq_attr} long mq_curmsg
|
|
|
|
|
|
|
|
function int mq_close (mqd_t)
|
|
|
|
function int mq_getattr (mqd_t, struct mq_attr*)
|
|
|
|
function int mq_notify (mqd_t, const struct sigevent*)
|
|
|
|
function mqd_t mq_open (const char*, int, ...)
|
|
|
|
function ssize_t mq_receive (mqd_t, char*, size_t, unsigned int*)
|
|
|
|
function int mq_send (mqd_t, const char*, size_t, unsigned int)
|
|
|
|
function int mq_setattr (mqd_t, const struct mq_attr*, struct mq_attr*)
|
|
|
|
function int mq_unlink (const char*)
|
|
|
|
|
|
|
|
allow-header fcntl.h
|
|
|
|
allow-header signal.h
|
|
|
|
allow-header sys/types.h
|
|
|
|
allow-header time.h
|
|
|
|
|
|
|
|
allow *_t
|
|
|
|
#endif
|