If I'm writing a C extension, how would I go about calling "Signal.list" from 
within that extension?  

I would normally do something like this:

rb_funcall(rb_mSignal, rb_intern("list"), 0);

But there doesn't seem to be an rb_mSignal object available.

Caleb