Skip to content

GB_debugger_set_disabled

Lior Halphon edited this page Nov 30, 2024 · 2 revisions

Definition

void GB_debugger_set_disabled(GB_gameboy_t *gb, bool disabled);

In debugger.h

Description

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.

Thread Safety

GB_debugger_set_disabled is thread-safe and can be called from any thread and context.

Clone this wiki locally