_seh_longjmp_unwind is i386 only for now.
This commit is contained in:
parent
733b88bb60
commit
306a60d162
|
@ -370,7 +370,6 @@ void _MSVCRT_longjmp(_JUMP_BUFFER *jmp, int retval, CONTEXT86* context)
|
||||||
context->Eip = jmp->Eip;
|
context->Eip = jmp->Eip;
|
||||||
context->Eax = retval;
|
context->Eax = retval;
|
||||||
}
|
}
|
||||||
#endif /* i386 */
|
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* _seh_longjmp_unwind (MSVCRT.@)
|
* _seh_longjmp_unwind (MSVCRT.@)
|
||||||
|
@ -379,6 +378,7 @@ void __stdcall _seh_longjmp_unwind(_JUMP_BUFFER *jmp)
|
||||||
{
|
{
|
||||||
_local_unwind2( (MSVCRT_EXCEPTION_FRAME *)jmp->Registration, jmp->TryLevel );
|
_local_unwind2( (MSVCRT_EXCEPTION_FRAME *)jmp->Registration, jmp->TryLevel );
|
||||||
}
|
}
|
||||||
|
#endif /* i386 */
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* signal (MSVCRT.@)
|
* signal (MSVCRT.@)
|
||||||
|
|
|
@ -423,7 +423,7 @@ init MSVCRT_Init
|
||||||
@ cdecl _safe_fprem1() _safe_fprem1
|
@ cdecl _safe_fprem1() _safe_fprem1
|
||||||
@ cdecl _scalb( double long) _scalb
|
@ cdecl _scalb( double long) _scalb
|
||||||
@ cdecl _searchenv(str str str) _searchenv
|
@ cdecl _searchenv(str str str) _searchenv
|
||||||
@ stdcall _seh_longjmp_unwind(ptr) _seh_longjmp_unwind
|
@ stdcall -i386 _seh_longjmp_unwind(ptr) _seh_longjmp_unwind
|
||||||
@ stub _set_error_mode #(long)
|
@ stub _set_error_mode #(long)
|
||||||
@ stub _set_sbh_threshold #(long)
|
@ stub _set_sbh_threshold #(long)
|
||||||
@ stub _seterrormode #(long)
|
@ stub _seterrormode #(long)
|
||||||
|
|
Loading…
Reference in New Issue