Fixed Bug #793
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9925 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7f8bcc6c68
commit
cdfdb0f5ef
|
@ -96,7 +96,6 @@ struct ch_mutex {
|
||||||
/* External declarations. */
|
/* External declarations. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -414,7 +414,6 @@ static inline bool chThdQueueIsEmptyI(threads_queue_t *tqp) {
|
||||||
return queue_isempty(tqp);
|
return queue_isempty(tqp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Dequeues and wakes up one thread from the threads queue object.
|
* @brief Dequeues and wakes up one thread from the threads queue object.
|
||||||
* @details Dequeues one thread from the queue without checking if the queue
|
* @details Dequeues one thread from the queue without checking if the queue
|
||||||
|
|
|
@ -193,7 +193,6 @@ thread_t *chThdCreateSuspendedI(const thread_descriptor_t *tdp) {
|
||||||
return _thread_init(tp, tdp->name, tdp->prio);
|
return _thread_init(tp, tdp->name, tdp->prio);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Creates a new thread into a static memory area.
|
* @brief Creates a new thread into a static memory area.
|
||||||
* @details The new thread is initialized but not inserted in the ready list,
|
* @details The new thread is initialized but not inserted in the ready list,
|
||||||
|
|
|
@ -148,6 +148,7 @@
|
||||||
- RT: Merged RT4.
|
- RT: Merged RT4.
|
||||||
- NIL: Merged NIL2.
|
- NIL: Merged NIL2.
|
||||||
- NIL: Added STM32F7 demo.
|
- NIL: Added STM32F7 demo.
|
||||||
|
- RT: Fixed double empty lines (bug #793)(backported to 16.1.6, 3.0.6).
|
||||||
- HAL: Fixed wrong entries in STM32L4 registry (bug #792)(backported to
|
- HAL: Fixed wrong entries in STM32L4 registry (bug #792)(backported to
|
||||||
16.1.6).
|
16.1.6).
|
||||||
- HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver
|
- HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver
|
||||||
|
|
Loading…
Reference in New Issue