From: richardbarry Date: Sun, 6 Apr 2008 09:23:58 +0000 (+0000) Subject: Corrected prototypes for newly added functions that had the 'signed' qualifier missing. X-Git-Tag: V5.0.0~33 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0093113782ed88004a9eeee20ee5254e705de53f;p=freertos Corrected prototypes for newly added functions that had the 'signed' qualifier missing. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@291 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/queue.c b/Source/queue.c index 6927a5af5..2c49c8360 100644 --- a/Source/queue.c +++ b/Source/queue.c @@ -127,8 +127,8 @@ portBASE_TYPE xQueueTakeMutexRecursive( xQueueHandle xMutex, portTickType xBlock portBASE_TYPE xQueueGiveMutexRecursive( xQueueHandle xMutex ); signed portBASE_TYPE xQueueAltGenericSend( xQueueHandle pxQueue, const void * const pvItemToQueue, portTickType xTicksToWait, portBASE_TYPE xCopyPosition ); signed portBASE_TYPE xQueueAltGenericReceive( xQueueHandle pxQueue, const void * const pvBuffer, portTickType xTicksToWait, portBASE_TYPE xJustPeeking ); -portBASE_TYPE xQueueIsQueueEmptyFromISR( const xQueueHandle pxQueue ); -portBASE_TYPE xQueueIsQueueFullFromISR( const xQueueHandle pxQueue ); +signed portBASE_TYPE xQueueIsQueueEmptyFromISR( const xQueueHandle pxQueue ); +signed portBASE_TYPE xQueueIsQueueFullFromISR( const xQueueHandle pxQueue ); unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle pxQueue );