/* We must remove ourselves from the ready list before adding\r
ourselves to the blocked list as the same list item is used for\r
both lists. */\r
- uxListRemove( ( xListItem * ) &( pxCurrentCoRoutine->xGenericListItem ) );\r
+ ( void ) uxListRemove( ( xListItem * ) &( pxCurrentCoRoutine->xGenericListItem ) );\r
\r
/* The list item will be inserted in wake time order. */\r
listSET_LIST_ITEM_VALUE( &( pxCurrentCoRoutine->xGenericListItem ), xTimeToWake );\r
portDISABLE_INTERRUPTS();\r
{\r
pxUnblockedCRCB = ( corCRCB * ) listGET_OWNER_OF_HEAD_ENTRY( (&xPendingReadyCoRoutineList) );\r
- uxListRemove( &( pxUnblockedCRCB->xEventListItem ) );\r
+ ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) );\r
}\r
portENABLE_INTERRUPTS();\r
\r
- uxListRemove( &( pxUnblockedCRCB->xGenericListItem ) );\r
+ ( void ) uxListRemove( &( pxUnblockedCRCB->xGenericListItem ) );\r
prvAddCoRoutineToReadyQueue( pxUnblockedCRCB );\r
}\r
}\r
/* Is the co-routine waiting on an event also? */\r
if( pxCRCB->xEventListItem.pvContainer )\r
{\r
- uxListRemove( &( pxCRCB->xEventListItem ) );\r
+ ( void ) uxListRemove( &( pxCRCB->xEventListItem ) );\r
}\r
}\r
portENABLE_INTERRUPTS();\r
event lists and the pending ready list. This function assumes that a\r
check has already been made to ensure pxEventList is not empty. */\r
pxUnblockedCRCB = ( corCRCB * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList );\r
- uxListRemove( &( pxUnblockedCRCB->xEventListItem ) );\r
+ ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) );\r
vListInsertEnd( ( xList * ) &( xPendingReadyCoRoutineList ), &( pxUnblockedCRCB->xEventListItem ) );\r
\r
if( pxUnblockedCRCB->uxPriority >= pxCurrentCoRoutine->uxPriority )\r
{\r
/* Record the information required to implement\r
priority inheritance should it become necessary. */\r
- pxQueue->pxMutexHolder = ( void * ) xTaskGetCurrentTaskHandle();\r
+ pxQueue->pxMutexHolder = ( signed char * ) xTaskGetCurrentTaskHandle();\r
}\r
}\r
#endif\r
{\r
/* Record the information required to implement\r
priority inheritance should it become necessary. */\r
- pxQueue->pxMutexHolder = ( void * ) xTaskGetCurrentTaskHandle(); /*lint !e961 Cast is not redundant as xTaskHandle is a typedef. */\r
+ pxQueue->pxMutexHolder = ( signed char * ) xTaskGetCurrentTaskHandle(); /*lint !e961 Cast is not redundant as xTaskHandle is a typedef. */\r
}\r
}\r
#endif\r
pxQueue->u.pcReadFrom = pxQueue->pcHead;\r
}\r
--( pxQueue->uxMessagesWaiting );\r
- memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );\r
+ ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );\r
\r
xReturn = pdPASS;\r
\r
pxQueue->u.pcReadFrom = pxQueue->pcHead;\r
}\r
--( pxQueue->uxMessagesWaiting );\r
- memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );\r
+ ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );\r
\r
if( ( *pxCoRoutineWoken ) == pdFALSE )\r
{\r