diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-02-11 09:21:53 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-02-11 09:21:53 +0000 |
commit | 47f0e8fb7f337b65f848bf4cd59577d3967d0862 (patch) | |
tree | 9718f86035a7e04c5350043f0a207fc488a21de9 /os/nil | |
parent | 7f3221216d3e50c69db7d3f08595db7cfccd4424 (diff) | |
download | ChibiOS-47f0e8fb7f337b65f848bf4cd59577d3967d0862.tar.gz ChibiOS-47f0e8fb7f337b65f848bf4cd59577d3967d0862.tar.bz2 ChibiOS-47f0e8fb7f337b65f848bf4cd59577d3967d0862.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6699 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/nil')
-rw-r--r-- | os/nil/src/nil.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/os/nil/src/nil.c b/os/nil/src/nil.c index bafcb63cd..9141129cb 100644 --- a/os/nil/src/nil.c +++ b/os/nil/src/nil.c @@ -566,7 +566,6 @@ void chSemSignalI(semaphore_t *sp) { while (true) {
/* Is this thread waiting on this semaphore?*/
if (tr->u1.semp == sp) {
- sp->cnt++;
chDbgAssert(NIL_THD_IS_WTSEM(tr), "not waiting");
|