コード例 #1
0
ファイル: autoconf.cpp プロジェクト: CypherXG/UAE4Droid
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;
}
コード例 #2
0
ファイル: autoconf.c プロジェクト: BackupTheBerlios/arp2-svn
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;
}