DDeepin Developerfeat: Init commit
430163a1创建于 2022年10月19日历史提交
#ifndef _SPARC_BSD_OS_H
#define _SPARC_BSD_OS_H

typedef unsigned long os_context_register_t;

static inline os_context_t *arch_os_get_context(void **void_context) {
   asm volatile ("ta 0x03"); /* ta ST_FLUSH_WINDOWS */
   return (os_context_t *) (*void_context);
}

#endif /* _SPARC_BSD_OS_H */