(python, script, tmpdir, locals=True)
| 14 | |
| 15 | |
| 16 | def get_threads_for_process(python, script, tmpdir, locals=True): |
| 17 | with spawn_child_process(python, script, tmpdir) as child_process: |
| 18 | return list(get_process_threads(child_process.pid, locals=locals)) |
| 19 | |
| 20 | |
| 21 | def get_threads_for_core(python, script, tmpdir, locals=True): |
nothing calls this directly
no test coverage detected