summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-18 15:05:37 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-22 16:56:58 +0200
commit993a888dfde91cadbc723344035805ef770c8894 (patch)
tree97a819df192fdc3ec9f9fb9f86a02f1d22e870aa /cpukit/libmisc
parentscore: Avoid direct usage of _Thread_Executing (diff)
downloadrtems-993a888dfde91cadbc723344035805ef770c8894.tar.bz2
rtems: Create message queue implementation header
Move implementation specific parts of message.h and message.inl into new header file messageimpl.h. The message.h contains now only the application visible API.
Diffstat (limited to 'cpukit/libmisc')
-rw-r--r--cpukit/libmisc/monitor/mon-object.c1
-rw-r--r--cpukit/libmisc/monitor/mon-queue.c1
-rw-r--r--cpukit/libmisc/shell/main_wkspaceinfo.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/libmisc/monitor/mon-object.c b/cpukit/libmisc/monitor/mon-object.c
index f431fda347..6e55012fb3 100644
--- a/cpukit/libmisc/monitor/mon-object.c
+++ b/cpukit/libmisc/monitor/mon-object.c
@@ -20,6 +20,7 @@
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <rtems.h>
#include <rtems/monitor.h>
+#include <rtems/rtems/messageimpl.h>
#include <rtems/rtems/semimpl.h>
#if defined(RTEMS_POSIX_API)
#include <rtems/posix/pthread.h>
diff --git a/cpukit/libmisc/monitor/mon-queue.c b/cpukit/libmisc/monitor/mon-queue.c
index 962e834242..9a77d55ce5 100644
--- a/cpukit/libmisc/monitor/mon-queue.c
+++ b/cpukit/libmisc/monitor/mon-queue.c
@@ -4,6 +4,7 @@
#include <rtems.h>
#include <rtems/monitor.h>
+#include <rtems/rtems/messageimpl.h>
#include <stdio.h>
diff --git a/cpukit/libmisc/shell/main_wkspaceinfo.c b/cpukit/libmisc/shell/main_wkspaceinfo.c
index 5a0561e807..7a2f819a0b 100644
--- a/cpukit/libmisc/shell/main_wkspaceinfo.c
+++ b/cpukit/libmisc/shell/main_wkspaceinfo.c
@@ -20,6 +20,7 @@
#include <rtems/malloc.h>
#include <rtems/shell.h>
#include <rtems/score/protectedheap.h>
+#include <rtems/score/wkspace.h>
#include "internal.h"
void rtems_shell_print_unified_work_area_message(void)