Merge commit 'erg/master'
commit
b17c2388cb
|
@ -84,9 +84,11 @@ long exception_handler(PEXCEPTION_POINTERS pe)
|
||||||
|
|
||||||
void c_to_factor_toplevel(CELL quot)
|
void c_to_factor_toplevel(CELL quot)
|
||||||
{
|
{
|
||||||
AddVectoredExceptionHandler(0, (void*)exception_handler);
|
if(!AddVectoredExceptionHandler(0, (void*)exception_handler))
|
||||||
|
fatal_error("AddVectoredExceptionHandler failed", 0);
|
||||||
c_to_factor(quot);
|
c_to_factor(quot);
|
||||||
RemoveVectoredExceptionHandler((void*)exception_handler);
|
if(!RemoveVectoredExceptionHandler((void*)exception_handler))
|
||||||
|
fatal_error("RemoveVectoredExceptionHandler failed", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void open_console(void)
|
void open_console(void)
|
||||||
|
|
Loading…
Reference in New Issue