| 132 | } |
| 133 | |
| 134 | std::string dump_useful_thread_info() |
| 135 | { |
| 136 | std::string result; |
| 137 | |
| 138 | if (auto cpu = get_current_cpu_thread()) |
| 139 | { |
| 140 | fmt::append(result, "%s", cpu_threads_emulation_info_dump_t{cpu->id}); |
| 141 | } |
| 142 | |
| 143 | return result; |
| 144 | } |
| 145 | |
| 146 | bool is_debugger_present() |
| 147 | { |
no test coverage detected