summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-16 09:44:01 +0900
committerKoichi Sasada <ko1@atdot.net>2019-12-16 14:55:59 +0900
commitd2f04d332f2ff04f25202ed38e23de526a9aea46 (patch)
tree905bd8eeda8249a8b1338416703d1254555a5581 /vm_core.h
parent1e80a208cc44cbbdd4e49d6146eea29cde5cd42a (diff)
Kernel#abort without arguments should print error info
[Bug #16424]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2754
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 365f6fb931..edcfdb7abc 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -1848,6 +1848,7 @@ void rb_threadptr_interrupt(rb_thread_t *th);
void rb_threadptr_unlock_all_locking_mutexes(rb_thread_t *th);
void rb_threadptr_pending_interrupt_clear(rb_thread_t *th);
void rb_threadptr_pending_interrupt_enque(rb_thread_t *th, VALUE v);
+VALUE rb_ec_get_errinfo(const rb_execution_context_t *ec);
void rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo);
void rb_execution_context_update(const rb_execution_context_t *ec);
void rb_execution_context_mark(const rb_execution_context_t *ec);