mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-26 19:49:04 +08:00
Clear off a few compiler warnings generated when pedantic warnings are switched on.
This commit is contained in:
@ -116,6 +116,8 @@ implementation will be called instead. */
|
|||||||
extern void vApplicationExceptionRegisterDump( xPortRegisterDump *xRegisterDump ) __attribute__((weak));
|
extern void vApplicationExceptionRegisterDump( xPortRegisterDump *xRegisterDump ) __attribute__((weak));
|
||||||
void vApplicationExceptionRegisterDump( xPortRegisterDump *xRegisterDump )
|
void vApplicationExceptionRegisterDump( xPortRegisterDump *xRegisterDump )
|
||||||
{
|
{
|
||||||
|
( void ) xRegisterDump;
|
||||||
|
|
||||||
for( ;; )
|
for( ;; )
|
||||||
{
|
{
|
||||||
portNOP();
|
portNOP();
|
||||||
|
@ -71,6 +71,7 @@ back into the caller stack. */
|
|||||||
#define portMINUS_CONTEXT_SIZE -136
|
#define portMINUS_CONTEXT_SIZE -136
|
||||||
#else
|
#else
|
||||||
#define portCONTEXT_SIZE 132
|
#define portCONTEXT_SIZE 132
|
||||||
|
#define portMINUS_CONTEXT_SIZE -132
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Offsets from the stack pointer at which saved registers are placed. */
|
/* Offsets from the stack pointer at which saved registers are placed. */
|
||||||
|
Reference in New Issue
Block a user