Esempio n. 1
0
static uae_u32 execute_fn_on_extra_stack (TrapFunction f, int has_retval)
{
#ifdef CAN_DO_STACK_MAGIC
    void *s = get_extra_stack ();
    do_stack_magic (f, s, has_retval);
#endif
    return 0;
}
Esempio n. 2
0
static uae_u32 execute_fn_on_extra_stack (TrapFunction f, int has_retval)
{
    struct extra_stack *s = get_extra_stack ();
    do_stack_magic (f, s, has_retval);
    return 0;
}