Fixed bug 3564134.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4631 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-09-02 13:32:28 +00:00
parent 5191c88ead
commit 79dbfe20c0
2 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,7 @@ err_t sys_sem_new(sys_sem_t *sem, u8_t count) {
}
else {
chSemInit(*sem, (cnt_t)count);
SYS_STATS_INC(sem.used);
SYS_STATS_INC_USED(sem);
return ERR_OK;
}
}

View File

@ -79,6 +79,7 @@
*****************************************************************************
*** 2.4.3 ***
- FIX: Fixed problem with lwIP statistics (bug 3564134).
- FIX: Fixed packed structures macros not functional in IAR and RVCT port
(bug 3561279).
- FIX: Fixed Problem in FatFs demos related to LFN (bug 3560980).