aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-03-13 10:16:38 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-03-13 10:16:38 +0000
commit5a2e74f1317079df7bc3c02f316859cb011d836e (patch)
treefb231ddf39ff7cc2b0323e406f3d902fb58be926
parent889294e1e0acc9e39048c4d336ce80931c4309ff (diff)
downloadChibiOS-5a2e74f1317079df7bc3c02f316859cb011d836e.tar.gz
ChibiOS-5a2e74f1317079df7bc3c02f316859cb011d836e.tar.bz2
ChibiOS-5a2e74f1317079df7bc3c02f316859cb011d836e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@230 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--src/chthreads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chthreads.c b/src/chthreads.c
index 9944bedb0..22c815683 100644
--- a/src/chthreads.c
+++ b/src/chthreads.c
@@ -182,7 +182,7 @@ void chThdResume(Thread *tp) {
chSysLock();
if ((tp)->p_state == PRSUSPENDED)
- chSchWakeupS((tp), RDY_OK);
+ chSchWakeupS(tp, RDY_OK);
chSysUnlock();
}