summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-01 17:30:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-01 17:30:11 +0000
commit63ca29665634b7ab017dd1930910f696a337c822 (patch)
tree5a7cf9320815cf57d0fa7d4d442937d3cebece83 /cpukit/score/cpu/unix
parent2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-63ca29665634b7ab017dd1930910f696a337c822.tar.bz2
2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>
* cpu.c: Links hello again.
Diffstat (limited to 'cpukit/score/cpu/unix')
-rw-r--r--cpukit/score/cpu/unix/ChangeLog4
-rw-r--r--cpukit/score/cpu/unix/cpu.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/score/cpu/unix/ChangeLog b/cpukit/score/cpu/unix/ChangeLog
index 44ab6a2294..c972c9d6cf 100644
--- a/cpukit/score/cpu/unix/ChangeLog
+++ b/cpukit/score/cpu/unix/ChangeLog
@@ -1,3 +1,7 @@
+2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * cpu.c: Links hello again.
+
2008-09-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Do not define boolean, single_precision,
diff --git a/cpukit/score/cpu/unix/cpu.c b/cpukit/score/cpu/unix/cpu.c
index 6d67842c56..10f45a9424 100644
--- a/cpukit/score/cpu/unix/cpu.c
+++ b/cpukit/score/cpu/unix/cpu.c
@@ -461,10 +461,10 @@ typedef struct AuxFrame_ {
/* MUST make sure this is called in a new frame so it
* uses the new stack
*/
-static void trampo(void (*pc)(), jmp_buf *pjb)
+void trampo(void (*pc)(), jmp_buf *pjb)
__attribute__((noinline));
-static void trampo(void (*pc)(), jmp_buf *pjb)
+void trampo(void (*pc)(), jmp_buf *pjb)
{
if ( setjmp( *pjb ) )
pc();