From 6a274b2b01211eb92311d0f083277a4e50cac529 Mon Sep 17 00:00:00 2001 From: David Xu Date: Sat, 6 Jan 2007 11:30:04 +0000 Subject: [PATCH] Add function __mq_oshandle() to get file handle of a mqueue. --- include/mqueue.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/mqueue.h b/include/mqueue.h index 2c97451ae4dc..833274f04b89 100644 --- a/include/mqueue.h +++ b/include/mqueue.h @@ -50,5 +50,7 @@ ssize_t mq_timedreceive(mqd_t, char *__restrict, size_t, int mq_timedsend(mqd_t, const char *, size_t, unsigned, const struct timespec *); int mq_unlink(const char *); +int __mq_oshandle(mqd_t mqd); + __END_DECLS #endif