MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / gc_check_break

Function gc_check_break

src/misc/gc_node.cpp:145–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

143 }
144
145 static void gc_check_break ( uint64_t id ) {
146 if ( gc_break_on_id == 0 ) {
147 static bool once = true;
148 if ( once ) { once = false; gc_break_on_id = gc_init_break_on_id(); }
149 }
150 if ( gc_break_on_id && id == gc_break_on_id ) {
151 DAS_FATAL_LOG("gc_node break: id=%" PRIu64 "\n", id);
152 print_current_stack_trace();
153 os_debug_break();
154 }
155 }
156
157 // ---- gc_node ----
158

Callers 2

gc_nodeMethod · 0.85
~gc_nodeMethod · 0.85

Calls 3

gc_init_break_on_idFunction · 0.85
os_debug_breakFunction · 0.85

Tested by

no test coverage detected