This blog has moved!

Visit the new easy-to-update one today!


Using GDB on Ruby's Guts

I just happened to see this on Jamis Buck's Blog today. Looks pretty neat, apparently it's as simple as calling the rb_raise function from the debugger, which prints a stack trace:

call (void)rb_raise((int)rb_eException, "raising an exception")

You can also apparently chew up the stack in a more complicated fashion. It'll be neat to figure out what else you can do to a running ruby process.