コード例 #1
0
 void VM::register_kill(STATE) {
   SYNC(state);
   interrupt_by_kill_ = true;
   check_local_interrupts = true;
   get_attention();
 }
コード例 #2
0
void VM::register_raise(Exception* exc) {
    thread_state_.raise_exception(exc);
    check_local_interrupts = true;
    get_attention();
}
コード例 #3
0
 void VM::register_raise(STATE, Exception* exc) {
   SYNC(state);
   interrupted_exception_.set(exc);
   check_local_interrupts = true;
   get_attention();
 }