]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/include/list.h
Enhanced priority dis-inheritance functionality in the case where a task that caused...
[freertos] / FreeRTOS / Source / include / list.h
index cde5453f23b37ba353a5c1bd70566b09f9470c2b..0ba0de04338197e04edf3948d4e6d7d8f99077ef 100644 (file)
@@ -205,7 +205,7 @@ typedef struct xMINI_LIST_ITEM MiniListItem_t;
 typedef struct xLIST\r
 {\r
        listFIRST_LIST_INTEGRITY_CHECK_VALUE                            /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */\r
-       configLIST_VOLATILE UBaseType_t uxNumberOfItems;\r
+       volatile UBaseType_t uxNumberOfItems;\r
        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 (). */\r
        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. */\r
        listSECOND_LIST_INTEGRITY_CHECK_VALUE                           /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */\r