r"""bthread_meta , print task meta by id
(debugger, command, result, internal_dict)
| 268 | |
| 269 | |
| 270 | def bthread_meta(debugger, command, result, internal_dict): |
| 271 | r"""bthread_meta <id>, print task meta by id""" |
| 272 | bthread = global_state.get_bthread(command) |
| 273 | if bthread is None: |
| 274 | return |
| 275 | print(bthread) |
| 276 | |
| 277 | |
| 278 | def bthread_regs(debugger, command, result, internal_dict): |
nothing calls this directly
no test coverage detected