summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/mqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/include/mqueue.h')
-rw-r--r--cpukit/posix/include/mqueue.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/posix/include/mqueue.h b/cpukit/posix/include/mqueue.h
index c317d0c7bf..11c1dceafb 100644
--- a/cpukit/posix/include/mqueue.h
+++ b/cpukit/posix/include/mqueue.h
@@ -34,9 +34,11 @@ extern "C" {
*/
/**
- * Message queue id type
+ * Message queue id type.
+ *
+ * @note Use uint32_t since all POSIX Ids are 32-bit currently.
*/
-typedef Objects_Id mqd_t;
+typedef uint32_t mqd_t;
/**
* This is the message queue attributes structure.