mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
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:
parent
272cd59c26
commit
9290e3e71f
|
@ -3,8 +3,8 @@
|
||||||
|
|
||||||
|
|
||||||
FreeRTOS supports many tools and architectures. V7.0.0 is sponsored by:
|
FreeRTOS supports many tools and architectures. V7.0.0 is sponsored by:
|
||||||
Atollic AB - Atollic provides professional embedded systems development
|
Atollic AB - Atollic provides professional embedded systems development
|
||||||
tools for C/C++ development, code analysis and test automation.
|
tools for C/C++ development, code analysis and test automation.
|
||||||
See http://www.atollic.com
|
See http://www.atollic.com
|
||||||
|
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue