| 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 |
no test coverage detected