Last active
January 16, 2025 04:42
-
-
Save wr0ngway/3001d76b4e5bf312e912 to your computer and use it in GitHub Desktop.
Uses gdb to dump ruby backtraces for all threads, and displays them in an easily readable format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PID=$1 | |
RUBY_BINARY=`which ruby` | |
BT_FILENAME="/tmp/ruby-backtrace-$PID-$(date +%s).txt" | |
cmdfile=$(mktemp) | |
cat <<EOF > $cmdfile | |
set \$old_stdout = dup(1) | |
set \$old_stderr = dup(2) | |
set \$fd = creat("$BT_FILENAME", 0644) | |
call dup2(\$fd, 1) | |
call dup2(\$fd, 2) | |
set \$thread_list = rb_thread_list() | |
set \$num_threads = rb_num2long(rb_ary_length(\$thread_list)) | |
set \$i = 0 | |
while \$i < \$num_threads | |
call rb_p(rb_thread_backtrace_m(0, 0, rb_ary_entry(\$thread_list, \$i++))) | |
end | |
call dup2(\$old_stdout, 1) | |
call dup2(\$old_stderr, 2) | |
call close(\$old_stdout) | |
call close(\$old_stderr) | |
call close(\$fd) | |
EOF | |
gdb "$RUBY_BINARY" "$PID" -batch -x $cmdfile &> /dev/null | |
ruby -e 'ARGF.each {|l| val = eval(l); puts val ? val.join("\n") : "nil thread"; puts "\n\n\n\n" }' $BT_FILENAME | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LLDB version: