-
-
Notifications
You must be signed in to change notification settings - Fork 212
GB_debugger_set_disabled
Lior Halphon edited this page Nov 30, 2024
·
2 revisions
void GB_debugger_set_disabled(GB_gameboy_t *gb, bool disabled);
In debugger.h
Call this function to disable debugging capabilities in an emulator instance. This will prevent existing breakpoints and watchpoints, as well as pending finish
commands`, from stopping the debugger.
After disabling the debugger, this function may be called again with false
to re-enable debugging capabilities. Existing breakpoints and watchpoints will be preserved.
GB_debugger_set_disabled
is thread-safe and can be called from any thread and context.