mirror of
https://github.com/ruby/ruby.git
synced 2026-01-28 13:04:22 +00:00
14 lines
288 B
Plaintext
14 lines
288 B
Plaintext
script print("\n>>> Threads\n\n")
|
|
thread list
|
|
|
|
script print("\n>>> Machine level backtrace\n\n")
|
|
thread backtrace all
|
|
|
|
script print("\n>>> Dump Ruby level backtrace (if possible)\n\n")
|
|
call rb_vmdebug_stack_dump_all_threads()
|
|
call fflush(stderr)
|
|
|
|
script print(">>> Finish\n")
|
|
detach
|
|
quit
|