diff options
author | Takashi Kokubun <[email protected]> | 2020-12-07 13:54:04 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2020-12-07 13:54:32 -0800 |
commit | 3319ce37651aa7e50c31b5fba14871938318b37a (patch) | |
tree | ad9dccce3808501937a9ea3c18ce28b01c2457f7 | |
parent | a4f292426b40f9d6c8f3d646e4b7c667313074f2 (diff) |
Have list_node at the top of rb_mjit_unit
to convert list_node to rb_mjit_unit easily in gdb.
-rw-r--r-- | mjit_worker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mjit_worker.c b/mjit_worker.c index 56921da0b8..f97bf6518f 100644 --- a/mjit_worker.c +++ b/mjit_worker.c @@ -148,6 +148,7 @@ typedef intptr_t pid_t; // The unit structure that holds metadata of ISeq for MJIT. struct rb_mjit_unit { + struct list_node unode; // Unique order number of unit. int id; // Dlopen handle of the loaded object file. @@ -159,7 +160,6 @@ struct rb_mjit_unit { #endif // Only used by unload_units. Flag to check this unit is currently on stack or not. bool used_code_p; - struct list_node unode; // mjit_compile's optimization switches struct rb_mjit_compile_info compile_info; // captured CC values, they should be marked with iseq. |