list.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. /*
  2. * FreeRTOS Kernel V10.4.4
  3. * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. *
  5. * SPDX-License-Identifier: MIT
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  8. * this software and associated documentation files (the "Software"), to deal in
  9. * the Software without restriction, including without limitation the rights to
  10. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  11. * the Software, and to permit persons to whom the Software is furnished to do so,
  12. * subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in all
  15. * copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  19. * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  20. * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  21. * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. *
  24. * https://www.FreeRTOS.org
  25. * https://github.com/FreeRTOS
  26. *
  27. */
  28. /*
  29. * This is the list implementation used by the scheduler. While it is tailored
  30. * heavily for the schedulers needs, it is also available for use by
  31. * application code.
  32. *
  33. * list_ts can only store pointers to list_item_ts. Each ListItem_t contains a
  34. * numeric value (xItemValue). Most of the time the lists are sorted in
  35. * ascending item value order.
  36. *
  37. * Lists are created already containing one list item. The value of this
  38. * item is the maximum possible that can be stored, it is therefore always at
  39. * the end of the list and acts as a marker. The list member pxHead always
  40. * points to this marker - even though it is at the tail of the list. This
  41. * is because the tail contains a wrap back pointer to the true head of
  42. * the list.
  43. *
  44. * In addition to it's value, each list item contains a pointer to the next
  45. * item in the list (pxNext), a pointer to the list it is in (pxContainer)
  46. * and a pointer to back to the object that contains it. These later two
  47. * pointers are included for efficiency of list manipulation. There is
  48. * effectively a two way link between the object containing the list item and
  49. * the list item itself.
  50. *
  51. *
  52. * \page ListIntroduction List Implementation
  53. * \ingroup FreeRTOSIntro
  54. */
  55. #ifndef LIST_H
  56. #define LIST_H
  57. #ifndef INC_FREERTOS_H
  58. #error "FreeRTOS.h must be included before list.h"
  59. #endif
  60. /*
  61. * The list structure members are modified from within interrupts, and therefore
  62. * by rights should be declared volatile. However, they are only modified in a
  63. * functionally atomic way (within critical sections of with the scheduler
  64. * suspended) and are either passed by reference into a function or indexed via
  65. * a volatile variable. Therefore, in all use cases tested so far, the volatile
  66. * qualifier can be omitted in order to provide a moderate performance
  67. * improvement without adversely affecting functional behaviour. The assembly
  68. * instructions generated by the IAR, ARM and GCC compilers when the respective
  69. * compiler's options were set for maximum optimisation has been inspected and
  70. * deemed to be as intended. That said, as compiler technology advances, and
  71. * especially if aggressive cross module optimisation is used (a use case that
  72. * has not been exercised to any great extend) then it is feasible that the
  73. * volatile qualifier will be needed for correct optimisation. It is expected
  74. * that a compiler removing essential code because, without the volatile
  75. * qualifier on the list structure members and with aggressive cross module
  76. * optimisation, the compiler deemed the code unnecessary will result in
  77. * complete and obvious failure of the scheduler. If this is ever experienced
  78. * then the volatile qualifier can be inserted in the relevant places within the
  79. * list structures by simply defining configLIST_VOLATILE to volatile in
  80. * FreeRTOSConfig.h (as per the example at the bottom of this comment block).
  81. * If configLIST_VOLATILE is not defined then the preprocessor directives below
  82. * will simply #define configLIST_VOLATILE away completely.
  83. *
  84. * To use volatile list structure members then add the following line to
  85. * FreeRTOSConfig.h (without the quotes):
  86. * "#define configLIST_VOLATILE volatile"
  87. */
  88. #ifndef configLIST_VOLATILE
  89. #define configLIST_VOLATILE
  90. #endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */
  91. /* *INDENT-OFF* */
  92. #ifdef __cplusplus
  93. extern "C" {
  94. #endif
  95. /* *INDENT-ON* */
  96. /* Macros that can be used to place known values within the list structures,
  97. * then check that the known values do not get corrupted during the execution of
  98. * the application. These may catch the list data structures being overwritten in
  99. * memory. They will not catch data errors caused by incorrect configuration or
  100. * use of FreeRTOS.*/
  101. #if ( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0 )
  102. /* Define the macros to do nothing. */
  103. #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
  104. #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
  105. #define listFIRST_LIST_INTEGRITY_CHECK_VALUE
  106. #define listSECOND_LIST_INTEGRITY_CHECK_VALUE
  107. #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem )
  108. #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem )
  109. #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList )
  110. #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList )
  111. #define listTEST_LIST_ITEM_INTEGRITY( pxItem )
  112. #define listTEST_LIST_INTEGRITY( pxList )
  113. #else /* if ( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0 ) */
  114. /* Define macros that add new members into the list structures. */
  115. #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1;
  116. #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2;
  117. #define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1;
  118. #define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2;
  119. /* Define macros that set the new structure members to known values. */
  120. #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE
  121. #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE
  122. #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) ( pxList )->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE
  123. #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) ( pxList )->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE
  124. /* Define macros that will assert if one of the structure members does not
  125. * contain its expected value. */
  126. #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) configASSERT( ( ( pxItem )->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxItem )->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) )
  127. #define listTEST_LIST_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxList )->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) )
  128. #endif /* configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES */
  129. /*
  130. * Definition of the only type of object that a list can contain.
  131. */
  132. struct xLIST;
  133. struct xLIST_ITEM
  134. {
  135. listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */
  136. configLIST_VOLATILE TickType_t xItemValue; /*< The value being listed. In most cases this is used to sort the list in ascending order. */
  137. struct xLIST_ITEM * configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the list. */
  138. struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the list. */
  139. void * pvOwner; /*< Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way link between the object containing the list item and the list item itself. */
  140. struct xLIST * configLIST_VOLATILE pxContainer; /*< Pointer to the list in which this list item is placed (if any). */
  141. listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */
  142. };
  143. typedef struct xLIST_ITEM ListItem_t; /* For some reason lint wants this as two separate definitions. */
  144. struct xMINI_LIST_ITEM
  145. {
  146. listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */
  147. configLIST_VOLATILE TickType_t xItemValue;
  148. struct xLIST_ITEM * configLIST_VOLATILE pxNext;
  149. struct xLIST_ITEM * configLIST_VOLATILE pxPrevious;
  150. };
  151. typedef struct xMINI_LIST_ITEM MiniListItem_t;
  152. /*
  153. * Definition of the type of queue used by the scheduler.
  154. */
  155. typedef struct xLIST
  156. {
  157. listFIRST_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */
  158. volatile UBaseType_t uxNumberOfItems;
  159. ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last item returned by a call to listGET_OWNER_OF_NEXT_ENTRY (). */
  160. MiniListItem_t xListEnd; /*< List item that contains the maximum possible item value meaning it is always at the end of the list and is therefore used as a marker. */
  161. listSECOND_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */
  162. } List_t;
  163. /*
  164. * Access macro to set the owner of a list item. The owner of a list item
  165. * is the object (usually a TCB) that contains the list item.
  166. *
  167. * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER
  168. * \ingroup LinkedList
  169. */
  170. #define listSET_LIST_ITEM_OWNER( pxListItem, pxOwner ) ( ( pxListItem )->pvOwner = ( void * ) ( pxOwner ) )
  171. /*
  172. * Access macro to get the owner of a list item. The owner of a list item
  173. * is the object (usually a TCB) that contains the list item.
  174. *
  175. * \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER
  176. * \ingroup LinkedList
  177. */
  178. #define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner )
  179. /*
  180. * Access macro to set the value of the list item. In most cases the value is
  181. * used to sort the list in ascending order.
  182. *
  183. * \page listSET_LIST_ITEM_VALUE listSET_LIST_ITEM_VALUE
  184. * \ingroup LinkedList
  185. */
  186. #define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue ) )
  187. /*
  188. * Access macro to retrieve the value of the list item. The value can
  189. * represent anything - for example the priority of a task, or the time at
  190. * which a task should be unblocked.
  191. *
  192. * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE
  193. * \ingroup LinkedList
  194. */
  195. #define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue )
  196. /*
  197. * Access macro to retrieve the value of the list item at the head of a given
  198. * list.
  199. *
  200. * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE
  201. * \ingroup LinkedList
  202. */
  203. #define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue )
  204. /*
  205. * Return the list item at the head of the list.
  206. *
  207. * \page listGET_HEAD_ENTRY listGET_HEAD_ENTRY
  208. * \ingroup LinkedList
  209. */
  210. #define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext )
  211. /*
  212. * Return the next list item.
  213. *
  214. * \page listGET_NEXT listGET_NEXT
  215. * \ingroup LinkedList
  216. */
  217. #define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext )
  218. /*
  219. * Return the list item that marks the end of the list
  220. *
  221. * \page listGET_END_MARKER listGET_END_MARKER
  222. * \ingroup LinkedList
  223. */
  224. #define listGET_END_MARKER( pxList ) ( ( ListItem_t const * ) ( &( ( pxList )->xListEnd ) ) )
  225. /*
  226. * Access macro to determine if a list contains any items. The macro will
  227. * only have the value true if the list is empty.
  228. *
  229. * \page listLIST_IS_EMPTY listLIST_IS_EMPTY
  230. * \ingroup LinkedList
  231. */
  232. #define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ? pdTRUE : pdFALSE )
  233. /*
  234. * Access macro to return the number of items in the list.
  235. */
  236. #define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems )
  237. /*
  238. * Access function to obtain the owner of the next entry in a list.
  239. *
  240. * The list member pxIndex is used to walk through a list. Calling
  241. * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list
  242. * and returns that entry's pxOwner parameter. Using multiple calls to this
  243. * function it is therefore possible to move through every item contained in
  244. * a list.
  245. *
  246. * The pxOwner parameter of a list item is a pointer to the object that owns
  247. * the list item. In the scheduler this is normally a task control block.
  248. * The pxOwner parameter effectively creates a two way link between the list
  249. * item and its owner.
  250. *
  251. * @param pxTCB pxTCB is set to the address of the owner of the next list item.
  252. * @param pxList The list from which the next item owner is to be returned.
  253. *
  254. * \page listGET_OWNER_OF_NEXT_ENTRY listGET_OWNER_OF_NEXT_ENTRY
  255. * \ingroup LinkedList
  256. */
  257. #define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \
  258. { \
  259. List_t * const pxConstList = ( pxList ); \
  260. /* Increment the index to the next item and return the item, ensuring */ \
  261. /* we don't return the marker used at the end of the list. */ \
  262. ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
  263. if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \
  264. { \
  265. ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
  266. } \
  267. ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \
  268. }
  269. /*
  270. * Version of uxListRemove() that does not return a value. Provided as a slight
  271. * optimisation for xTaskIncrementTick() by being inline.
  272. *
  273. * Remove an item from a list. The list item has a pointer to the list that
  274. * it is in, so only the list item need be passed into the function.
  275. *
  276. * @param uxListRemove The item to be removed. The item will remove itself from
  277. * the list pointed to by it's pxContainer parameter.
  278. *
  279. * @return The number of items that remain in the list after the list item has
  280. * been removed.
  281. *
  282. * \page listREMOVE_ITEM listREMOVE_ITEM
  283. * \ingroup LinkedList
  284. */
  285. #define listREMOVE_ITEM( pxItemToRemove ) \
  286. { \
  287. /* The list item knows which list it is in. Obtain the list from the list \
  288. * item. */ \
  289. List_t * const pxList = ( pxItemToRemove )->pxContainer; \
  290. \
  291. ( pxItemToRemove )->pxNext->pxPrevious = ( pxItemToRemove )->pxPrevious; \
  292. ( pxItemToRemove )->pxPrevious->pxNext = ( pxItemToRemove )->pxNext; \
  293. /* Make sure the index is left pointing to a valid item. */ \
  294. if( pxList->pxIndex == ( pxItemToRemove ) ) \
  295. { \
  296. pxList->pxIndex = ( pxItemToRemove )->pxPrevious; \
  297. } \
  298. \
  299. ( pxItemToRemove )->pxContainer = NULL; \
  300. ( pxList->uxNumberOfItems )--; \
  301. }
  302. /*
  303. * Inline version of vListInsertEnd() to provide slight optimisation for
  304. * xTaskIncrementTick().
  305. *
  306. * Insert a list item into a list. The item will be inserted in a position
  307. * such that it will be the last item within the list returned by multiple
  308. * calls to listGET_OWNER_OF_NEXT_ENTRY.
  309. *
  310. * The list member pxIndex is used to walk through a list. Calling
  311. * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list.
  312. * Placing an item in a list using vListInsertEnd effectively places the item
  313. * in the list position pointed to by pxIndex. This means that every other
  314. * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before
  315. * the pxIndex parameter again points to the item being inserted.
  316. *
  317. * @param pxList The list into which the item is to be inserted.
  318. *
  319. * @param pxNewListItem The list item to be inserted into the list.
  320. *
  321. * \page listINSERT_END listINSERT_END
  322. * \ingroup LinkedList
  323. */
  324. #define listINSERT_END( pxList, pxNewListItem ) \
  325. { \
  326. ListItem_t * const pxIndex = ( pxList )->pxIndex; \
  327. \
  328. /* Only effective when configASSERT() is also defined, these tests may catch \
  329. * the list data structures being overwritten in memory. They will not catch \
  330. * data errors caused by incorrect configuration or use of FreeRTOS. */ \
  331. listTEST_LIST_INTEGRITY( ( pxList ) ); \
  332. listTEST_LIST_ITEM_INTEGRITY( ( pxNewListItem ) ); \
  333. \
  334. /* Insert a new list item into ( pxList ), but rather than sort the list, \
  335. * makes the new list item the last item to be removed by a call to \
  336. * listGET_OWNER_OF_NEXT_ENTRY(). */ \
  337. ( pxNewListItem )->pxNext = pxIndex; \
  338. ( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
  339. \
  340. pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
  341. pxIndex->pxPrevious = ( pxNewListItem ); \
  342. \
  343. /* Remember which list the item is in. */ \
  344. ( pxNewListItem )->pxContainer = ( pxList ); \
  345. \
  346. ( ( pxList )->uxNumberOfItems )++; \
  347. }
  348. /*
  349. * Access function to obtain the owner of the first entry in a list. Lists
  350. * are normally sorted in ascending item value order.
  351. *
  352. * This function returns the pxOwner member of the first item in the list.
  353. * The pxOwner parameter of a list item is a pointer to the object that owns
  354. * the list item. In the scheduler this is normally a task control block.
  355. * The pxOwner parameter effectively creates a two way link between the list
  356. * item and its owner.
  357. *
  358. * @param pxList The list from which the owner of the head item is to be
  359. * returned.
  360. *
  361. * \page listGET_OWNER_OF_HEAD_ENTRY listGET_OWNER_OF_HEAD_ENTRY
  362. * \ingroup LinkedList
  363. */
  364. #define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( ( &( ( pxList )->xListEnd ) )->pxNext->pvOwner )
  365. /*
  366. * Check to see if a list item is within a list. The list item maintains a
  367. * "container" pointer that points to the list it is in. All this macro does
  368. * is check to see if the container and the list match.
  369. *
  370. * @param pxList The list we want to know if the list item is within.
  371. * @param pxListItem The list item we want to know if is in the list.
  372. * @return pdTRUE if the list item is in the list, otherwise pdFALSE.
  373. */
  374. #define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxList ) ) ? ( pdTRUE ) : ( pdFALSE ) )
  375. /*
  376. * Return the list a list item is contained within (referenced from).
  377. *
  378. * @param pxListItem The list item being queried.
  379. * @return A pointer to the List_t object that references the pxListItem
  380. */
  381. #define listLIST_ITEM_CONTAINER( pxListItem ) ( ( pxListItem )->pxContainer )
  382. /*
  383. * This provides a crude means of knowing if a list has been initialised, as
  384. * pxList->xListEnd.xItemValue is set to portMAX_DELAY by the vListInitialise()
  385. * function.
  386. */
  387. #define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portMAX_DELAY )
  388. /*
  389. * Must be called before a list is used! This initialises all the members
  390. * of the list structure and inserts the xListEnd item into the list as a
  391. * marker to the back of the list.
  392. *
  393. * @param pxList Pointer to the list being initialised.
  394. *
  395. * \page vListInitialise vListInitialise
  396. * \ingroup LinkedList
  397. */
  398. void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION;
  399. /*
  400. * Must be called before a list item is used. This sets the list container to
  401. * null so the item does not think that it is already contained in a list.
  402. *
  403. * @param pxItem Pointer to the list item being initialised.
  404. *
  405. * \page vListInitialiseItem vListInitialiseItem
  406. * \ingroup LinkedList
  407. */
  408. void vListInitialiseItem( ListItem_t * const pxItem ) PRIVILEGED_FUNCTION;
  409. /*
  410. * Insert a list item into a list. The item will be inserted into the list in
  411. * a position determined by its item value (ascending item value order).
  412. *
  413. * @param pxList The list into which the item is to be inserted.
  414. *
  415. * @param pxNewListItem The item that is to be placed in the list.
  416. *
  417. * \page vListInsert vListInsert
  418. * \ingroup LinkedList
  419. */
  420. void vListInsert( List_t * const pxList,
  421. ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION;
  422. /*
  423. * Insert a list item into a list. The item will be inserted in a position
  424. * such that it will be the last item within the list returned by multiple
  425. * calls to listGET_OWNER_OF_NEXT_ENTRY.
  426. *
  427. * The list member pxIndex is used to walk through a list. Calling
  428. * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list.
  429. * Placing an item in a list using vListInsertEnd effectively places the item
  430. * in the list position pointed to by pxIndex. This means that every other
  431. * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before
  432. * the pxIndex parameter again points to the item being inserted.
  433. *
  434. * @param pxList The list into which the item is to be inserted.
  435. *
  436. * @param pxNewListItem The list item to be inserted into the list.
  437. *
  438. * \page vListInsertEnd vListInsertEnd
  439. * \ingroup LinkedList
  440. */
  441. void vListInsertEnd( List_t * const pxList,
  442. ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION;
  443. /*
  444. * Remove an item from a list. The list item has a pointer to the list that
  445. * it is in, so only the list item need be passed into the function.
  446. *
  447. * @param uxListRemove The item to be removed. The item will remove itself from
  448. * the list pointed to by it's pxContainer parameter.
  449. *
  450. * @return The number of items that remain in the list after the list item has
  451. * been removed.
  452. *
  453. * \page uxListRemove uxListRemove
  454. * \ingroup LinkedList
  455. */
  456. UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) PRIVILEGED_FUNCTION;
  457. /* *INDENT-OFF* */
  458. #ifdef __cplusplus
  459. }
  460. #endif
  461. /* *INDENT-ON* */
  462. #endif /* ifndef LIST_H */