Class: Thread

Inherits:
Object
  • Object
show all
Defined in:
(unknown)

Instance Method Summary collapse

Instance Method Details

#purge_interrupt_queueObject



78
79
80
81
82
83
84
85
# File 'ext/stopgap_13632/stopgap_13632.c', line 78

VALUE
rb_thread_purge_queue(VALUE thread)
{
    rb_half_thread_t *th = (rb_half_thread_t*)DATA_PTR(thread);
    th->pending_interrupt_queue_checked = 1;
    rb_ary_clear(th->pending_interrupt_queue);
    return Qnil;
}