summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-05 22:13:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-05 22:13:15 +0000
commitc0d405ca016fe9c67b651a8d2ea13a5cc7b2153e (patch)
tree2234dbb0dc27781a2e78874a2ecc3f42b5a8d78b /c
parentIncreased stack space. (diff)
downloadrtems-c0d405ca016fe9c67b651a8d2ea13a5cc7b2153e.tar.bz2
Added new message priority parameter as returned by core support routine.
Diffstat (limited to 'c')
-rw-r--r--c/src/exec/itron/src/trcv_mbf.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/c/src/exec/itron/src/trcv_mbf.c b/c/src/exec/itron/src/trcv_mbf.c
index c0524b0f30..a63f2a6748 100644
--- a/c/src/exec/itron/src/trcv_mbf.c
+++ b/c/src/exec/itron/src/trcv_mbf.c
@@ -27,11 +27,12 @@ ER trcv_mbf(
TMO tmout
)
{
- ITRON_Message_buffer_Control *the_message_buffer;
- Objects_Locations location;
- CORE_message_queue_Status status;
- boolean wait;
- Watchdog_Interval interval;
+ ITRON_Message_buffer_Control *the_message_buffer;
+ Objects_Locations location;
+ CORE_message_queue_Status status;
+ boolean wait;
+ Watchdog_Interval interval;
+ CORE_message_queue_Submit_types core_priority;
interval = 0;
if (tmout == TMO_POL) {
@@ -61,6 +62,7 @@ ER trcv_mbf(
msg,
p_msgsz,
wait,
+ &core_priority,
interval
);
_Thread_Enable_dispatch();