|
92 | 92 | */ |
93 | 93 | #ifndef configLIST_VOLATILE |
94 | 94 | #define configLIST_VOLATILE |
95 | | -#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */ |
| 95 | +#endif /* configLIST_VOLATILE */ |
96 | 96 |
|
97 | 97 | /* *INDENT-OFF* */ |
98 | 98 | #ifdef __cplusplus |
@@ -191,7 +191,7 @@ typedef struct xLIST |
191 | 191 | * Access macro to get the owner of a list item. The owner of a list item |
192 | 192 | * is the object (usually a TCB) that contains the list item. |
193 | 193 | * |
194 | | - * \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER |
| 194 | + * \page listGET_LIST_ITEM_OWNER listGET_LIST_ITEM_OWNER |
195 | 195 | * \ingroup LinkedList |
196 | 196 | */ |
197 | 197 | #define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner ) |
@@ -310,7 +310,7 @@ typedef struct xLIST |
310 | 310 | * Remove an item from a list. The list item has a pointer to the list that |
311 | 311 | * it is in, so only the list item need be passed into the function. |
312 | 312 | * |
313 | | - * @param uxListRemove The item to be removed. The item will remove itself from |
| 313 | + * @param pxItemToRemove The item to be removed. The item will remove itself from |
314 | 314 | * the list pointed to by it's pxContainer parameter. |
315 | 315 | * |
316 | 316 | * @return The number of items that remain in the list after the list item has |
@@ -491,7 +491,7 @@ void vListInsertEnd( List_t * const pxList, |
491 | 491 | * Remove an item from a list. The list item has a pointer to the list that |
492 | 492 | * it is in, so only the list item need be passed into the function. |
493 | 493 | * |
494 | | - * @param uxListRemove The item to be removed. The item will remove itself from |
| 494 | + * @param pxItemToRemove The item to be removed. The item will remove itself from |
495 | 495 | * the list pointed to by it's pxContainer parameter. |
496 | 496 | * |
497 | 497 | * @return The number of items that remain in the list after the list item has |
|
0 commit comments