summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:31:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-01 20:31:25 +0000
commit0910a25152fd5c915770150199b31000c94cd6fa (patch)
tree3e0b4a43c2f4be34cf6ec9c973b89722d55a8002 /c/src/exec/posix
parentIncreased stack space for all initialization tasks in tmtests. (diff)
downloadrtems-0910a25152fd5c915770150199b31000c94cd6fa.tar.bz2
Added name to id support routine.
Diffstat (limited to 'c/src/exec/posix')
-rw-r--r--c/src/exec/posix/src/mqueue.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/c/src/exec/posix/src/mqueue.c b/c/src/exec/posix/src/mqueue.c
index cdf940bc55..05d9d3c741 100644
--- a/c/src/exec/posix/src/mqueue.c
+++ b/c/src/exec/posix/src/mqueue.c
@@ -712,3 +712,18 @@ int mq_getattr(
}
return POSIX_BOTTOM_REACHED();
}
+
+/*PAGE
+ *
+ * _POSIX_Message_queue_Name_to_id
+ *
+ * XXX
+ */
+
+int _POSIX_Message_queue_Name_to_id(
+ const char *name,
+ Objects_Id *id
+)
+{
+ return 0; /* XXX fill me in */
+}