From: Caleb Tennis Date: 2005-12-09T23:19:39+09:00 Subject: Calling "Signal" from a C module 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