diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-25 15:52:21 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-25 15:52:21 +0000 |
commit | 062d6e4af8c148d378e883ba3254ced67523812b (patch) | |
tree | 7e2bcd9c345ef48c4fcb870e51c5aa51a73a32de | |
parent | 4da3d3f9aaf4b115aeec6a627cc1c1d56e98605e (diff) | |
download | xine-lib-062d6e4af8c148d378e883ba3254ced67523812b.tar.gz xine-lib-062d6e4af8c148d378e883ba3254ced67523812b.tar.bz2 |
have CVS compile again
CVS patchset: 6742
CVS date: 2004/06/25 15:52:21
-rw-r--r-- | src/xine-utils/cpu_accel.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/xine-utils/cpu_accel.c b/src/xine-utils/cpu_accel.c index 5e721debf..9c2800405 100644 --- a/src/xine-utils/cpu_accel.c +++ b/src/xine-utils/cpu_accel.c @@ -41,6 +41,12 @@ #include "xineutils.h" #if defined(ARCH_X86) || defined(ARCH_X86_64) + +static jmp_buf sigill_return; + +static void sigill_handler (int n) { + longjmp(sigill_return, 1); +} static uint32_t arch_accel (void) { uint32_t caps; @@ -162,11 +168,6 @@ static uint32_t arch_accel (void) return caps; } -static jmp_buf sigill_return; - -static void sigill_handler (int n) { - longjmp(sigill_return, 1); -} #endif /* ARCH_X86 */ #if defined(ARCH_PPC) && defined(ENABLE_ALTIVEC) |