0.7.7.9:
[sbcl.git] / src / runtime / hppa-linux-os.h
1 #ifndef _HPPA_LINUX_OS_H
2 #define _HPPA_LINUX_OS_H
3
4 typedef struct ucontext os_context_t;
5 /* FIXME: This will change if the parisc-linux people implement
6    wide-sigcontext for 32-bit kernels */
7 typedef unsigned long os_context_register_t;
8
9 static inline os_context_t *arch_os_get_context(void **void_context) {
10     return (os_context_t *) *void_context;
11 }
12
13 unsigned long os_context_fp_control(os_context_t *context);
14 void os_restore_fp_control(os_context_t *context);
15
16 #endif /* _HPPA_LINUX_OS_H */