Ruby 3.3.7p123 (2025-01-15 revision be31f993d7fa0219d85f7b3c694d454da4ecc10b)
eval.h
Go to the documentation of this file.
1#ifndef RBIMPL_INTERN_EVAL_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_INTERN_EVAL_H
25#include "ruby/internal/value.h"
26
28
29/* eval.c */
46void rb_exc_raise(VALUE exc);
47
63void rb_exc_fatal(VALUE exc);
64
65/* process.c */
66
80VALUE rb_f_exit(int argc, const VALUE *argv);
81
98VALUE rb_f_abort(int argc, const VALUE *argv);
99
100/* eval.c*/
101
109void rb_interrupt(void);
110
119ID rb_frame_this_func(void);
120
141void rb_jump_tag(int state);
142
152void rb_obj_call_init(VALUE obj, int argc, const VALUE *argv);
153
168void rb_obj_call_init_kw(VALUE, int, const VALUE*, int);
169
177ID rb_frame_callee(void);
178
206VALUE rb_make_exception(int argc, const VALUE *argv);
207
208/* eval_jump.c */
209
218void rb_set_end_proc(void (*func)(VALUE arg), VALUE arg);
219
221
222#endif /* RBIMPL_INTERN_EVAL_H */
Tweaking visibility of C variables/functions.
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition dllexport.h:74
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition dllexport.h:65
void rb_exc_fatal(VALUE mesg)
Raises a fatal error in the current thread.
Definition eval.c:699
VALUE rb_f_abort(int argc, const VALUE *argv)
This is similar to rb_f_exit().
Definition process.c:4536
VALUE rb_f_exit(int argc, const VALUE *argv)
Identical to rb_exit(), except how arguments are passed.
Definition process.c:4467
Defines RBIMPL_ATTR_NORETURN.
#define RBIMPL_ATTR_NORETURN()
Wraps (or simulates) [[noreturn]]
Definition noreturn.h:38
Defines VALUE and ID.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40