vm: minor fixes.
parent
22bd11c4a4
commit
5c0d8c7e4f
|
@ -14,7 +14,7 @@ enum context_object {
|
||||||
|
|
||||||
/* When the callstack fills up (e.g by to deep recursion), a callstack
|
/* When the callstack fills up (e.g by to deep recursion), a callstack
|
||||||
overflow error is triggered. So before continuing executing on it
|
overflow error is triggered. So before continuing executing on it
|
||||||
in general_error(), we chop of this many bytes to have some space
|
in general_error(), we chop off this many bytes to have some space
|
||||||
to work with. */
|
to work with. */
|
||||||
static const cell stack_reserved = 4096;
|
static const cell stack_reserved = 4096;
|
||||||
|
|
||||||
|
|
|
@ -445,8 +445,8 @@ void factor_vm::factorbug_usage(bool advanced_p) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void exit_fep(factor_vm* vm) {
|
static void exit_fep(factor_vm* vm) {
|
||||||
vm->unlock_console();
|
unlock_console();
|
||||||
vm->handle_ctrl_c();
|
handle_ctrl_c();
|
||||||
vm->fep_p = false;
|
vm->fep_p = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue