0.7.1.20:
[sbcl.git] / src / runtime / sparc-linux-os.h
1 #ifndef _SPARC_LINUX_OS_H
2 #define _SPARC_LINUX_OS_H
3
4 typedef struct sigcontext os_context_t;
5
6 static inline os_context_t *arch_os_get_context(void **void_context) {
7   asm volatile ("ta 0x03"); /* ta ST_FLUSH_WINDOWS */
8   return (os_context_t *) (void_context + 37);
9 }
10
11 #endif /* _SPARC_LINUX_OS_H */