Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8734 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
927be6a82c
commit
3717292e80
|
@ -82,7 +82,7 @@ typedef void *(*memgetfunc_t)(size_t size);
|
|||
|
||||
/**
|
||||
* @brief Returns whatever a pointer or memory size is aligned to
|
||||
* the type @p align_t.
|
||||
* the type @p stkalign_t.
|
||||
*/
|
||||
#define MEM_IS_ALIGNED(p) (((size_t)(p) & MEM_ALIGN_MASK) == 0U)
|
||||
/** @} */
|
||||
|
|
|
@ -72,12 +72,13 @@
|
|||
*** Releases and Change Log ***
|
||||
*****************************************************************************
|
||||
|
||||
*** RT 3.2.0 ***
|
||||
- OPT: Removed the p_msg field from the thread_t structure saving a
|
||||
*** Next ***
|
||||
- RT: Removed the p_msg field from the thread_t structure saving a
|
||||
msg_t-sized field from the structure. Messages now use a new field
|
||||
into the p_u union. Now synchnorous messages are even faster.
|
||||
- FIX: Fixed tm_stop - best case bug (bug #688)(backported to 16.1.0
|
||||
- RT: Fixed tm_stop - best case bug (bug #688)(backported to 16.1.0
|
||||
and 3.0.5).
|
||||
- ALL: Several minor documentation/formatting-related fixes.
|
||||
|
||||
*** 16.1.0 ***
|
||||
- RT: Added CodeWarrior compiler support to the e200 port.
|
||||
|
|
Loading…
Reference in New Issue