git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@139 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
9aaaebf0e2
commit
b196b277b9
|
@ -49,6 +49,7 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
|
||||||
to keep the processor in the state it had when it was halted.
|
to keep the processor in the state it had when it was halted.
|
||||||
Note: This is not a kernel bug but something specific with the ARM port, the
|
Note: This is not a kernel bug but something specific with the ARM port, the
|
||||||
other ports are not affected.
|
other ports are not affected.
|
||||||
|
- Fixed the macro chThdResumeI(), it had a regression.
|
||||||
|
|
||||||
*** 0.4.4 ***
|
*** 0.4.4 ***
|
||||||
- Fixed a very important bug in the preemption ARM code, important enough to
|
- Fixed a very important bug in the preemption ARM code, important enough to
|
||||||
|
|
|
@ -219,7 +219,7 @@ extern "C" {
|
||||||
* \p chThdSuspend().
|
* \p chThdSuspend().
|
||||||
* @param tp the pointer to the thread
|
* @param tp the pointer to the thread
|
||||||
*/
|
*/
|
||||||
#define chThdResumeI(tp) chSchReadyI(tp)
|
#define chThdResumeI(tp) chSchReadyI((tp), RDY_OK)
|
||||||
|
|
||||||
#endif /* _THREADS_H_ */
|
#endif /* _THREADS_H_ */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue