Take pointer, not word count, as upper limit in verify_space()
[sbcl.git] / src / runtime / sparc-sunos-os.h
blob3c72cb33dd6f9e47cc56cce1aacfa3a62ac7d882
1 #ifndef _SPARC_SOLARIS_OS_H
2 #define _SPARC_SOLARIS_OS_H
4 typedef ucontext_t os_context_t;
5 typedef int os_context_register_t ;
7 static inline os_context_t *arch_os_get_context(void **void_context)
9 asm volatile ("ta 0x03"); /* ta ST_FLUSH_WINDOWS */
10 return (os_context_t *) (*void_context);
13 #endif /* _SPARC_SOLARIS_OS_H */