summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2023-03-31 17:42:03 +0900
committerKoichi Sasada <ko1@atdot.net>2023-03-31 18:10:00 +0900
commitad7362db074e3dfe7c5d62b42edbef87c25eb24c (patch)
treebd5c0a634811a822f6079fb20175387c8a801df6 /vm_core.h
parent95dafb53cde279c32cfcab9e42ea63e31ea5f861 (diff)
downloadruby-ad7362db074e3dfe7c5d62b42edbef87c25eb24c.tar.gz
rename `rb_thread_t::locking_native_thread`
to `rb_thread_t::has_dedicated_nt`
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 2d5ec6f717..1ab61e10f4 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -1011,7 +1011,7 @@ typedef struct rb_thread_struct {
BITFIELD(enum rb_thread_status, status, 2);
/* bit flags */
- unsigned int locking_native_thread : 1;
+ unsigned int has_dedicated_nt : 1;
unsigned int to_kill : 1;
unsigned int abort_on_exception: 1;
unsigned int report_on_exception: 1;