More strict check of AVX512 support in assembler.
[glibc.git] / conform / data / mqueue.h-data
blob76652ce661b18d48425d54687865fe95178ba91a
1 #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined XPG3 && !defined XPG4
2 // should test for not an array type.
3 type mqd_t
5 type {struct sigevent}
6 element {struct sigevent} int sigev_notify
7 element {struct sigevent} int sigev_signo
8 element {struct sigevent} {union sigval} sigev_value
9 element {struct sigevent} {void(*} sigev_notify_function )(union sigval)
10 element {struct sigevent} {pthread_attr_t*} sigev_notify_attributes
12 type {struct mq_attr}
13 element {struct mq_attr} long mq_flags
14 element {struct mq_attr} long mq_maxmsg
15 element {struct mq_attr} long mq_msgsize
16 element {struct mq_attr} long mq_curmsgs
18 function int mq_close (mqd_t)
19 function int mq_getattr (mqd_t, struct mq_attr*)
20 function int mq_notify (mqd_t, const struct sigevent*)
21 function mqd_t mq_open (const char*, int, ...)
22 function ssize_t mq_receive (mqd_t, char*, size_t, unsigned int*)
23 function int mq_send (mqd_t, const char*, size_t, unsigned int)
24 function int mq_setattr (mqd_t, const struct mq_attr*, struct mq_attr*)
25 function int mq_unlink (const char*)
26 #if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
27 optional-function ssize_t mq_timedreceive (mqd_t, char*, size_t, unsigned int*, const struct timespec*)
28 optional-function int mq_timedsend (mqd_t, const char*, size_t, unsigned int, const struct timespec*)
29 #endif
31 #if defined XOPEN2K8 || defined POSIX2008
32 type pthread_attr_t
33 type size_t
34 type ssize_t
35 type {struct timespec}
36 #endif
38 allow-header fcntl.h
39 allow-header signal.h
40 allow-header sys/types.h
41 allow-header time.h
43 allow mq_*
44 allow MQ_*
45 allow *_t
46 #endif