r"""list active bthreads num
(debugger, command, result, internal_dict)
| 220 | |
| 221 | |
| 222 | def bthread_num(debugger, command, result, internal_dict): |
| 223 | r"""list active bthreads num""" |
| 224 | if not global_state.started: |
| 225 | print("Not in bthread debug mode") |
| 226 | return |
| 227 | |
| 228 | target = debugger.GetSelectedTarget() |
| 229 | active_bthreads = get_bthreads_num(target) |
| 230 | print(active_bthreads) |
| 231 | |
| 232 | |
| 233 | def bthread_frame(debugger, command, result, internal_dict): |
nothing calls this directly
no test coverage detected