From 3d30779fd790358d280b4b61b5d1aaa0e697b554 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 23 Sep 2013 10:15:19 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6313 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/src/chthreads.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/os/rt/src/chthreads.c b/os/rt/src/chthreads.c index 042d90c5e..613810954 100644 --- a/os/rt/src/chthreads.c +++ b/os/rt/src/chthreads.c @@ -335,13 +335,14 @@ msg_t chThreadSuspendTimeoutS(thread_reference_t *trp, systime_t timeout) { void chThreadResumeI(thread_reference_t *trp, msg_t msg) { if (*trp != NULL) { + thread_t *tp = *trp; - chDbgAssert((*trp)->p_state == CH_STATE_SUSPENDED, + chDbgAssert(tp->p_state == CH_STATE_SUSPENDED, "not THD_STATE_SUSPENDED"); - (*trp)->p_u.rdymsg = msg; - chSchReadyI(*trp); *trp = NULL; + tp->p_u.rdymsg = msg; + chSchReadyI(tp); } } @@ -358,12 +359,13 @@ void chThreadResumeI(thread_reference_t *trp, msg_t msg) { void chThreadResumeS(thread_reference_t *trp, msg_t msg) { if (*trp != NULL) { - - chDbgAssert((*trp)->p_state == CH_STATE_SUSPENDED, + thread_t *tp = *trp; + + chDbgAssert(tp->p_state == CH_STATE_SUSPENDED, "not THD_STATE_SUSPENDED"); *trp = NULL; - chSchWakeupS(*trp, msg); + chSchWakeupS(tp, msg); } } -- cgit v1.2.3