diff options
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");
|