summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoichi Sasada <[email protected]>2022-05-24 03:57:06 +0900
committerKoichi Sasada <[email protected]>2022-05-24 10:06:51 +0900
commitf3235ac09582c764086da28245a86753a100ba58 ()
treef2f687ba65f3eb49212f0ceb915f640cb9d57dfc
parentd9984f39d32f4cd692a35f4d803f7754ea262805 (diff)
add `rb_th_serial()`
`rb_th_serial(th)` returns th's serial for debug print purpose.
Notes: Merged: https://.com/ruby/ruby/pull/5933
-rw-r--r--debug.c2
-rw-r--r--vm_core.h6
2 files changed, 7 insertions, 1 deletions
@@ -474,7 +474,7 @@ ruby_debug_log(const char *file, int line, const char *func_name, const char *fm
// thread information
const rb_thread_t *th = GET_THREAD();
if (r && len < MAX_DEBUG_LOG_MESSAGE_LEN) {
- r = snprintf(buff + len, MAX_DEBUG_LOG_MESSAGE_LEN - len, "\tth:%u", (unsigned int)th->serial);
if (r < 0) rb_bug("ruby_debug_log returns %d\n", r);
len += r;
}
@@ -1078,6 +1078,12 @@ typedef struct rb_thread_struct {
#endif
} rb_thread_t;
typedef enum {
VM_DEFINECLASS_TYPE_CLASS = 0x00,
VM_DEFINECLASS_TYPE_SINGLETON_CLASS = 0x01,