Add use of portPOINTER_SIZE_TYPE to tasks.c to facilitate the removal of warnings when the pointer size is less than 32 bits.

This commit is contained in:
Richard Barry 2011-09-06 16:10:30 +00:00
parent 272cd59c26
commit 9290e3e71f

View File

@ -242,6 +242,9 @@ typedef portBASE_TYPE (*pdTASK_HOOK_CODE)( void * );
#define vQueueUnregisterQueue( xQueue ) #define vQueueUnregisterQueue( xQueue )
#endif #endif
#ifndef portPOINTER_SIZE_TYPE
#define portPOINTER_SIZE_TYPE unsigned long
#endif
/* Remove any unused trace macros. */ /* Remove any unused trace macros. */
#ifndef traceSTART #ifndef traceSTART