/** * call-seq: * interrupt( db ) -> nil * * Interrupts the currently executing operation. */ static VALUE static_api_interrupt( VALUE module, VALUE db ) { sqlite *handle; GetDB( handle, db ); sqlite_interrupt( handle ); return Qnil; }