2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>

* cpu_asm.c: Add stub for setjmp/longjmp. Remove when in newlib.
This commit is contained in:
Joel Sherrill
2009-05-04 20:34:42 +00:00
parent 9149e76784
commit aaa5c0d08c
2 changed files with 14 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu_asm.c: Add stub for setjmp/longjmp. Remove when in newlib.
2009-02-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: AVR stack grows down.

View File

@@ -28,6 +28,16 @@
#include <rtems/bspIo.h> /* XXX remove me later */
/* XXX remove me when really implemented */
int setjmp(void)
{
return 0;
}
int longjmp(void)
{
return 0;
}
/*
* _CPU_Context_save_fp_context
*