You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pxListEnd=listGET_END_MARKER( pxList );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */
constchar*pcQueueGetName( QueueHandle_txQueue ) PRIVILEGED_FUNCTION;/*lint !e971 Unqualified char types are allowed for strings and single characters only. */
TaskHandle_txHandle; /* The handle of the task to which the rest of the information in the structure relates. */
163
-
constchar*pcTaskName; /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! *//*lint !e971 Unqualified char types are allowed for strings and single characters only. */
163
+
constchar*pcTaskName; /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */
164
164
UBaseType_txTaskNumber; /* A number unique to the task. */
165
165
eTaskStateeCurrentState; /* The state in which the task existed when the structure was populated. */
166
166
UBaseType_tuxCurrentPriority; /* The priority at which the task was running (may be inherited) when the structure was populated. */
@@ -379,7 +379,7 @@ typedef enum
379
379
*/
380
380
#if ( configSUPPORT_DYNAMIC_ALLOCATION==1 )
381
381
BaseType_txTaskCreate( TaskFunction_tpxTaskCode,
382
-
constchar*constpcName,/*lint !e971 Unqualified char types are allowed for strings and single characters only. */
char*pcTaskGetName( TaskHandle_txTaskToQuery ) PRIVILEGED_FUNCTION;/*lint !e971 Unqualified char types are allowed for strings and single characters only. */
TaskHandle_txTaskGetHandle( constchar*pcNameToQuery ) PRIVILEGED_FUNCTION;/*lint !e971 Unqualified char types are allowed for strings and single characters only. */
* @return The name assigned to the timer specified by the xTimer parameter.
1255
1253
*/
1256
-
constchar*pcTimerGetName( TimerHandle_txTimer ) PRIVILEGED_FUNCTION;/*lint !e971 Unqualified char types are allowed for strings and single characters only. */
/* The list structure contains a list item which is used to mark the
55
54
* end of the list. To initialise the list the list end is inserted
56
55
* as the only list entry. */
57
-
pxList->pxIndex= ( ListItem_t* ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */
/* The list end next and previous pointers point to itself so we know
66
65
* when the list is empty. */
67
-
pxList->xListEnd.pxNext= ( ListItem_t* ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */
68
-
pxList->xListEnd.pxPrevious= ( ListItem_t* ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */
for( pxIterator= ( ListItem_t* ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator=pxIterator->pxNext )/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */
0 commit comments