From 1aad9e4509193ea3726a2d021beb2421adca0a93 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 28 Feb 2010 13:26:02 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1691 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- docs/reports/kernel.txt | 8 ++++---- os/kernel/src/chcond.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/reports/kernel.txt b/docs/reports/kernel.txt index 16362d899..b21f6bd97 100644 --- a/docs/reports/kernel.txt +++ b/docs/reports/kernel.txt @@ -236,13 +236,13 @@ Platform : MSP430 OS Setup : Full kernel Compiler : msp430-gcc (GCC) 3.2.3 Options : -O2 -DCH_OPTIMIZE_SPEED=TRUE -Kernel Size = 5636 +Kernel Size = 5632 Platform : MSP430 OS Setup : Full kernel Compiler : msp430-gcc (GCC) 3.2.3 Options : -O2 -DCH_OPTIMIZE_SPEED=FALSE -Kernel Size = 5120 +Kernel Size = 5116 Platform : MSP430 OS Setup : Minimal kernel @@ -254,13 +254,13 @@ Platform : MSP430 OS Setup : Full kernel Compiler : msp430-gcc (GCC) 3.2.3 Options : -Os -DCH_OPTIMIZE_SPEED=TRUE -Kernel Size = 5572 +Kernel Size = 5568 Platform : MSP430 OS Setup : Full kernel Compiler : msp430-gcc (GCC) 3.2.3 Options : -Os -DCH_OPTIMIZE_SPEED=FALSE -Kernel Size = 5076 +Kernel Size = 5072 Platform : MSP430 OS Setup : Minimal kernel diff --git a/os/kernel/src/chcond.c b/os/kernel/src/chcond.c index 372b9b2f1..a78ff4ec5 100644 --- a/os/kernel/src/chcond.c +++ b/os/kernel/src/chcond.c @@ -218,8 +218,8 @@ msg_t chCondWaitTimeoutS(CondVar *cp, systime_t time) { mp = chMtxUnlockS(); ctp->p_u.wtobjp = cp; prio_insert(ctp, &cp->c_queue); - chSchGoSleepTimeoutS(THD_STATE_WTCOND, time); - msg = ctp->p_u.rdymsg; + msg = chSchGoSleepTimeoutS(THD_STATE_WTCOND, time); +// msg = ctp->p_u.rdymsg; chMtxLockS(mp); return msg; } -- cgit v1.2.3