mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[MSVCRT] Comment out _setjmp/longjmp
Our own implementation is better and passes more tests.
This commit is contained in:
@@ -729,6 +729,7 @@ int CDECL _except_handler4_common( ULONG *cookie, void (*check_cookie)(void),
|
||||
}
|
||||
|
||||
|
||||
#ifndef __REACTOS__
|
||||
/*
|
||||
* setjmp/longjmp implementation
|
||||
*/
|
||||
@@ -837,6 +838,7 @@ void __cdecl longjmp(_JUMP_BUFFER *jmp, int retval)
|
||||
|
||||
__wine_longjmp( (__wine_jmp_buf *)jmp, retval );
|
||||
}
|
||||
#endif // __REACTOS__
|
||||
|
||||
/*********************************************************************
|
||||
* _seh_longjmp_unwind (MSVCRT.@)
|
||||
|
||||
@@ -87,6 +87,7 @@ ULONG_PTR get_exception_pc( DISPATCHER_CONTEXT *dispatch )
|
||||
}
|
||||
|
||||
|
||||
#ifndef __REACTOS__
|
||||
/*******************************************************************
|
||||
* longjmp (MSVCRT.@)
|
||||
*/
|
||||
@@ -109,6 +110,7 @@ void __cdecl longjmp( _JUMP_BUFFER *jmp, int retval )
|
||||
__wine_longjmp( (__wine_jmp_buf *)jmp, retval );
|
||||
}
|
||||
#endif
|
||||
#endif // __REACTOS__
|
||||
|
||||
/*******************************************************************
|
||||
* _local_unwind (MSVCRT.@)
|
||||
|
||||
Reference in New Issue
Block a user