1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

error.c (rb_bug_for_fatal_signal): renamed from rb_bug_context

Just refactoring.

The name "rb_bug_context" is completely unclear for me.
(Can you see that "context" means "machine register context"?)
The context is available only when a fatal signal (sigbus, sigsegv, or
sigill) is received; in fact, the function is used only for fatal
signals.  So, I think the name should be changed.
This commit is contained in:
Yusuke Endoh 2019-10-09 23:02:22 +09:00
parent b9cf58d2b2
commit dd477df411
3 changed files with 5 additions and 5 deletions

View file

@ -599,7 +599,7 @@ rb_bug(const char *fmt, ...)
} }
void void
rb_bug_context(const void *ctx, const char *fmt, ...) rb_bug_for_fatal_signal(const void *ctx, const char *fmt, ...)
{ {
const char *file = NULL; const char *file = NULL;
int line = 0; int line = 0;

View file

@ -933,7 +933,7 @@ sigbus(int sig SIGINFO_ARG)
#if defined __APPLE__ || defined __linux__ #if defined __APPLE__ || defined __linux__
CHECK_STACK_OVERFLOW(); CHECK_STACK_OVERFLOW();
#endif #endif
rb_bug_context(SIGINFO_CTX, "Bus Error" MESSAGE_FAULT_ADDRESS); rb_bug_for_fatal_signal(SIGINFO_CTX, "Bus Error" MESSAGE_FAULT_ADDRESS);
} }
#endif #endif
@ -946,7 +946,7 @@ sigsegv(int sig SIGINFO_ARG)
{ {
check_reserved_signal("SEGV"); check_reserved_signal("SEGV");
CHECK_STACK_OVERFLOW(); CHECK_STACK_OVERFLOW();
rb_bug_context(SIGINFO_CTX, "Segmentation fault" MESSAGE_FAULT_ADDRESS); rb_bug_for_fatal_signal(SIGINFO_CTX, "Segmentation fault" MESSAGE_FAULT_ADDRESS);
} }
#endif #endif
@ -961,7 +961,7 @@ sigill(int sig SIGINFO_ARG)
#if defined __APPLE__ #if defined __APPLE__
CHECK_STACK_OVERFLOW(); CHECK_STACK_OVERFLOW();
#endif #endif
rb_bug_context(SIGINFO_CTX, "Illegal instruction" MESSAGE_FAULT_ADDRESS); rb_bug_for_fatal_signal(SIGINFO_CTX, "Illegal instruction" MESSAGE_FAULT_ADDRESS);
} }
#endif #endif

View file

@ -1624,7 +1624,7 @@ extern void rb_vmdebug_debug_print_post(const rb_execution_context_t *ec, const
#define SDR() rb_vmdebug_stack_dump_raw(GET_EC(), GET_EC()->cfp) #define SDR() rb_vmdebug_stack_dump_raw(GET_EC(), GET_EC()->cfp)
#define SDR2(cfp) rb_vmdebug_stack_dump_raw(GET_EC(), (cfp)) #define SDR2(cfp) rb_vmdebug_stack_dump_raw(GET_EC(), (cfp))
void rb_vm_bugreport(const void *); void rb_vm_bugreport(const void *);
NORETURN(void rb_bug_context(const void *, const char *fmt, ...)); NORETURN(void rb_bug_for_fatal_signal(const void *, const char *fmt, ...));
/* functions about thread/vm execution */ /* functions about thread/vm execution */
RUBY_SYMBOL_EXPORT_BEGIN RUBY_SYMBOL_EXPORT_BEGIN