Skip to content

Commit d1f551e

Browse files
RameshAniruddhaKanhere
authored andcommitted
- Fixed the wrong pre-processor comment and function parameters
1 parent 587fe6d commit d1f551e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

include/list.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
*/
9393
#ifndef configLIST_VOLATILE
9494
#define configLIST_VOLATILE
95-
#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */
95+
#endif /* configLIST_VOLATILE */
9696

9797
/* *INDENT-OFF* */
9898
#ifdef __cplusplus
@@ -191,7 +191,7 @@ typedef struct xLIST
191191
* Access macro to get the owner of a list item. The owner of a list item
192192
* is the object (usually a TCB) that contains the list item.
193193
*
194-
* \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER
194+
* \page listGET_LIST_ITEM_OWNER listGET_LIST_ITEM_OWNER
195195
* \ingroup LinkedList
196196
*/
197197
#define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner )
@@ -310,7 +310,7 @@ typedef struct xLIST
310310
* Remove an item from a list. The list item has a pointer to the list that
311311
* it is in, so only the list item need be passed into the function.
312312
*
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
314314
* the list pointed to by it's pxContainer parameter.
315315
*
316316
* @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,
491491
* Remove an item from a list. The list item has a pointer to the list that
492492
* it is in, so only the list item need be passed into the function.
493493
*
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
495495
* the list pointed to by it's pxContainer parameter.
496496
*
497497
* @return The number of items that remain in the list after the list item has

0 commit comments

Comments
 (0)