mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Uncrustify: triggered by comment.
This commit is contained in:
parent
3ba910ca33
commit
3ebec2c9ce
1 changed files with 13 additions and 13 deletions
|
|
@ -365,19 +365,19 @@ typedef struct xLIST
|
||||||
\
|
\
|
||||||
/* Insert a new list item into ( pxList ), but rather than sort the list, \
|
/* Insert a new list item into ( pxList ), but rather than sort the list, \
|
||||||
* makes the new list item the last item to be removed by a call to \
|
* makes the new list item the last item to be removed by a call to \
|
||||||
* listGET_OWNER_OF_NEXT_ENTRY(). */ \
|
* listGET_OWNER_OF_NEXT_ENTRY(). */ \
|
||||||
( pxNewListItem )->pxNext = pxIndex; \
|
( pxNewListItem )->pxNext = pxIndex; \
|
||||||
( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
|
( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
|
||||||
\
|
\
|
||||||
pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
|
pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
|
||||||
pxIndex->pxPrevious = ( pxNewListItem ); \
|
pxIndex->pxPrevious = ( pxNewListItem ); \
|
||||||
\
|
\
|
||||||
/* Remember which list the item is in. */ \
|
/* Remember which list the item is in. */ \
|
||||||
( pxNewListItem )->pxContainer = ( pxList ); \
|
( pxNewListItem )->pxContainer = ( pxList ); \
|
||||||
\
|
\
|
||||||
UBaseType_t uxNumberOfItems = ( ( pxList )->uxNumberOfItems ); \
|
UBaseType_t uxNumberOfItems = ( ( pxList )->uxNumberOfItems ); \
|
||||||
uxNumberOfItems++; \
|
uxNumberOfItems++; \
|
||||||
( ( pxList )->uxNumberOfItems ) = uxNumberOfItems; \
|
( ( pxList )->uxNumberOfItems ) = uxNumberOfItems; \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue