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

This commit is contained in:
gdisirio 2008-01-25 16:01:34 +00:00
parent e5a84b6b75
commit e884f2837b
2 changed files with 5 additions and 7 deletions

View File

@ -43,8 +43,8 @@ void chSemInit(Semaphore *sp, t_cnt n) {
* @param sp pointer to a \p Semaphore structure
* @param n the new value of the semaphore counter. Must be non-negative.
* @note The released threads can recognize they were waked up by a reset
* instead than a signal because the \p p_rdymsg field is set to
* \p RDY_RESET.
* instead than a signal because the \p chSemWait() will return
* \p RDY_RESET instead of \p RDY_OK.
*/
void chSemReset(Semaphore *sp, t_cnt n) {
@ -61,8 +61,8 @@ void chSemReset(Semaphore *sp, t_cnt n) {
* @param sp pointer to a \p Semaphore structure
* @param n the new value of the semaphore counter. Must be non-negative.
* @note The released threads can recognize they were waked up by a reset
* instead than a signal because the \p p_rdymsg field is set to
* \p RDY_RESET.
* instead than a signal because the \p chSemWait() will return
* \p RDY_RESET instead of \p RDY_OK.
* @note This function does not reschedule.
*/
void chSemResetI(Semaphore *sp, t_cnt n) {
@ -146,8 +146,8 @@ t_msg chSemWaitTimeoutS(Semaphore *sp, t_time time) {
}
return RDY_OK;
}
#endif /* CH_USE_SEMAPHORES_TIMEOUT */
/**
* Performs a signal operation on a semaphore.
* @param sp pointer to a \p Semaphore structure

View File

@ -25,7 +25,6 @@
#include <ch.h>
#ifdef CH_USE_SERIAL_FULLDUPLEX
/**
* Initializes a generic full duplex driver. The HW dependent part of the
* initialization has to be performed outside, usually in the hardware
@ -108,7 +107,6 @@ t_dflags chFDDGetAndClearFlags(FullDuplexDriver *sd) {
sd->sd_flags = SD_NO_ERROR;
return mask;
}
#endif /* CH_USE_SERIAL_FULLDUPLEX */
#ifdef CH_USE_SERIAL_HALFDUPLEX