MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / add_print_handler

Function add_print_handler

core/string/print_string.cpp:51–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51void add_print_handler(PrintHandlerList *p_handler) {
52 _global_lock();
53 p_handler->next = print_handler_list;
54 print_handler_list = p_handler;
55 _global_unlock();
56}
57
58void remove_print_handler(const PrintHandlerList *p_handler) {
59 _global_lock();

Callers 3

execute_test_codeMethod · 0.85
RemoteDebuggerMethod · 0.85
EditorNodeMethod · 0.85

Calls 2

_global_lockFunction · 0.85
_global_unlockFunction · 0.85

Tested by 1

execute_test_codeMethod · 0.68