From 63ca29665634b7ab017dd1930910f696a337c822 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 1 Dec 2008 17:30:11 +0000 Subject: 2008-12-01 Joel Sherrill * cpu.c: Links hello again. --- cpukit/score/cpu/unix/ChangeLog | 4 ++++ cpukit/score/cpu/unix/cpu.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'cpukit/score/cpu/unix') 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 + + * cpu.c: Links hello again. + 2008-09-11 Ralf Corsépius * 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(); -- cgit v1.2.3