Lines Matching defs:mq_open
16 //! let mqd0 = mq_open(&mq_name, oflag0, mode, None).unwrap();
21 //! let mqd1 = mq_open(&mq_name, oflag1, mode, None).unwrap();
42 /// Used with [`mq_open`].
52 /// If set along with `O_CREAT`, `mq_open` will fail if the message
64 /// [`mq_getattr`] and optionally [`mq_open`],
141 /// See also [`mq_open(2)`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_open.html)
144 pub fn mq_open(
152 libc::mq_open(
159 None => unsafe { libc::mq_open(name.as_ptr(), oflag.bits()) },