- Fixed the wrong pre-processor comment and function parameters

This commit is contained in:
Ramesh 2026-04-22 16:49:12 +05:30 committed by Aniruddha Kanhere
parent 587fe6df0d
commit ab7312d5b4

View file

@ -92,7 +92,7 @@
*/
#ifndef configLIST_VOLATILE
#define configLIST_VOLATILE
#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */
#endif /* configLIST_VOLATILE */
/* *INDENT-OFF* */
#ifdef __cplusplus
@ -191,7 +191,7 @@ typedef struct xLIST
* Access macro to get the owner of a list item. The owner of a list item
* is the object (usually a TCB) that contains the list item.
*
* \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER
* \page listGET_LIST_ITEM_OWNER listGET_LIST_ITEM_OWNER
* \ingroup LinkedList
*/
#define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner )
@ -310,7 +310,7 @@ typedef struct xLIST
* Remove an item from a list. The list item has a pointer to the list that
* it is in, so only the list item need be passed into the function.
*
* @param uxListRemove The item to be removed. The item will remove itself from
* @param pxItemToRemove The item to be removed. The item will remove itself from
* the list pointed to by it's pxContainer parameter.
*
* @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,
* Remove an item from a list. The list item has a pointer to the list that
* it is in, so only the list item need be passed into the function.
*
* @param uxListRemove The item to be removed. The item will remove itself from
* @param pxItemToRemove The item to be removed. The item will remove itself from
* the list pointed to by it's pxContainer parameter.
*
* @return The number of items that remain in the list after the list item has