ruby-changes:14793
From: nobu <ko1@a...>
Date: Sat, 13 Feb 2010 07:22:45 +0900 (JST)
Subject: [ruby-changes:14793] Ruby:r26655 (mvm): * vm_core.h (enum ruby_vm_interrupted_bits): named.
nobu 2010-02-13 07:22:37 +0900 (Sat, 13 Feb 2010) New Revision: 26655 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26655 Log: * vm_core.h (enum ruby_vm_interrupted_bits): named. Modified files: branches/mvm/vm_core.h Index: mvm/vm_core.h =================================================================== --- mvm/vm_core.h (revision 26654) +++ mvm/vm_core.h (revision 26655) @@ -733,11 +733,12 @@ #error "unsupported thread model" #endif -enum { +enum ruby_vm_interrupted_bits { ruby_vm_timer_bit = 0x01, ruby_vm_interrupt_bit = 0x02, ruby_vm_finalizer_bit = 0x04, - ruby_vm_signal_bit = 0x08 + ruby_vm_signal_bit = 0x08, + ruby_vm_all_interrupted_bits = 0x0f }; #define RUBY_VM_SET_INTERRUPT(th) ((th)->interrupt_flag |= ruby_vm_interrupt_bit) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/