summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/coremsgsubmit.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-16 19:35:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-16 19:35:08 +0000
commit7d741413807423534b66a4d7b76979530da91941 (patch)
treedcb6ab98800928b5b0eef5796faafdf1b3a33f04 /c/src/exec/score/src/coremsgsubmit.c
parent2001-08-16 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-7d741413807423534b66a4d7b76979530da91941.tar.bz2
2001-08-16 Joel Sherrill <joel@OARcorp.com>
* include/rtems/score/coremsg.h, src/coremsgsubmit.c: Add a new return status to account for blocking sends. Otherwise, the caller will think that the returned message status will have the ultimate results of the operation. If the send times out, the final status will be in the return_code of the thread.
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/src/coremsgsubmit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/score/src/coremsgsubmit.c b/c/src/exec/score/src/coremsgsubmit.c
index 94398db4c0..eabcb79ddf 100644
--- a/c/src/exec/score/src/coremsgsubmit.c
+++ b/c/src/exec/score/src/coremsgsubmit.c
@@ -171,5 +171,5 @@ CORE_message_queue_Status _CORE_message_queue_Submit(
_Thread_queue_Enqueue( &the_message_queue->Wait_queue, timeout );
}
- return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;
+ return CORE_MESSAGE_QUEUE_STATUS_UNSATISFIED_WAIT;
}