vm_core.h: bit flags
* vm_core.h (rb_vm_struct, rb_thread_struct): make flags bit fields. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e6a10e89b1
commit
093c389390
10
vm_core.h
10
vm_core.h
@ -493,9 +493,9 @@ typedef struct rb_vm_struct {
|
||||
size_t living_thread_num;
|
||||
VALUE thgroup_default;
|
||||
|
||||
int running;
|
||||
int thread_abort_on_exception;
|
||||
int trace_running;
|
||||
unsigned int running: 1;
|
||||
unsigned int thread_abort_on_exception: 1;
|
||||
unsigned int trace_running: 1;
|
||||
volatile int sleeper;
|
||||
|
||||
/* object management */
|
||||
@ -784,8 +784,8 @@ typedef struct rb_thread_struct {
|
||||
rb_ensure_list_t *ensure_list;
|
||||
|
||||
/* misc */
|
||||
enum method_missing_reason method_missing_reason;
|
||||
int abort_on_exception;
|
||||
enum method_missing_reason method_missing_reason: 8;
|
||||
unsigned int abort_on_exception: 1;
|
||||
#ifdef USE_SIGALTSTACK
|
||||
void *altstack;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user