1 #ifndef _X86_DARWIN_OS_H
2 #define _X86_DARWIN_OS_H
4 #include <architecture/i386/table.h>
5 #include <i386/user_ldt.h>
9 typedef int os_context_register_t
;
11 static inline os_context_t
*arch_os_get_context(void **void_context
)
13 return (os_context_t
*) *void_context
;
16 void set_data_desc_size(data_desc_t
* desc
, unsigned long size
);
17 void set_data_desc_addr(data_desc_t
* desc
, void* addr
);
19 /* As of XCode 3.0, the field names for the thread state have changed
20 * and now are prepended with __. Use some #define hackery to deal
21 * with this. MAC_OS_X_VERSION_10_5 seems to be a good test to see if
22 * we need the new style field names.
24 #if MAC_OS_X_VERSION_10_5
26 #define CONTEXT_ADDR_FROM_STEM(stem) &context->uc_mcontext->__ss.__##stem
36 #define EFLAGS __eflags
46 #define CONTEXT_ADDR_FROM_STEM(stem) &context->uc_mcontext->ss.stem
64 #endif /* MAC_OS_X_VERSION_10_5 */
68 #endif /* _X86_DARWIN_OS_H */