git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1990 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2010-06-02 17:27:31 +00:00
parent 3f81701c83
commit d9578ad0db
2 changed files with 3 additions and 3 deletions

View File

@ -215,7 +215,7 @@ void chOQInit(OutputQueue *oqp, uint8_t *bp, size_t size, qnotify_t onfy) {
oqp->q_buffer = oqp->q_rdptr = oqp->q_wrptr = bp;
oqp->q_top = bp + size;
oqp->q_notify = onfy;
chSemInit(&oqp->q_sem, size);
chSemInit(&oqp->q_sem, (cnt_t)size);
}
/**

View File

@ -63,8 +63,8 @@
- OPT: Small size optimization in the semaphores subsystem.
- OPT: Improvements in the STM8 port, the code is now smaller and generally
faster, also saved few bytes of RAM.
- Added explicit casts in chevents.h and chqueues.h in order to silence
some warnings on a specific compiler.
- Added explicit casts in chevents.h, chqueues.h, chqueues.c in order to
silence some warnings on a specific compiler.
*** 1.5.8 ***
- FIX: Fixed missing files from ST library zip file (bug 3006629).