abort_on_exception()
public
Returns the status of the thread-local
“abort on exception” condition for thr. The default is false.
See also Thread::abort_on_exception=.
Show source
static VALUE
rb_thread_abort_exc(VALUE thread)
{
rb_thread_t *th;
GetThreadPtr(thread, th);
return th->abort_on_exception ? Qtrue : Qfalse;
}