Ruby  3.1.4p223 (2023-03-30 revision HEAD)
load.h
Go to the documentation of this file.
1 #ifndef RBIMPL_INTERN_LOAD_H /*-*-C++-*-vi:se ft=cpp:*/
2 #define RBIMPL_INTERN_LOAD_H
25 #include "ruby/internal/value.h"
26 
28 
29 /* load.c */
30 
31 
64 void rb_load(VALUE path, int wrap);
65 
90 void rb_load_protect(VALUE path, int wrap, int *state);
91 
101 int rb_provided(const char *feature);
102 
114 int rb_feature_provided(const char *feature, const char **loading);
115 
125 void rb_provide(const char *feature);
126 
140 VALUE rb_f_require(VALUE self, VALUE feature);
141 
177 VALUE rb_require_string(VALUE feature);
178 
197 void rb_ext_ractor_safe(bool flag);
198 
200 #define RB_EXT_RACTOR_SAFE(f) rb_ext_ractor_safe(f)
201 
212 #define HAVE_RB_EXT_RACTOR_SAFE 1
213 
217 
218 #endif /* RBIMPL_INTERN_LOAD_H */
Tweaking visibility of C variables/functions.
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition: dllexport.h:106
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition: dllexport.h:97
void rb_provide(const char *feature)
Declares that the given feature is already provided by someone else.
Definition: load.c:638
VALUE rb_f_require(VALUE self, VALUE feature)
Identical to rb_require_string(), except it ignores the first argument for no reason.
Definition: load.c:898
void rb_ext_ractor_safe(bool flag)
Asserts that the extension library that calls this function is aware of Ractor.
Definition: load.c:1097
VALUE rb_require_string(VALUE feature)
Finds and loads the given feature, if absent.
Definition: load.c:1254
int rb_feature_provided(const char *feature, const char **loading)
Identical to rb_provided(), except it additionally returns the "canonical" name of the loaded feature...
Definition: load.c:610
void rb_load_protect(VALUE path, int wrap, int *state)
Identical to rb_load(), except it avoids potential global escapes.
Definition: load.c:735
int rb_provided(const char *feature)
Queries if the given feature has already been loaded into the execution context.
Definition: load.c:577
void rb_load(VALUE path, int wrap)
Loads and executes the Ruby program in the given file.
Definition: load.c:727
Defines RBIMPL_ATTR_NONNULL.
#define RBIMPL_ATTR_NONNULL(list)
Wraps (or simulates) __attribute__((nonnull))
Definition: nonnull.h:27
Defines VALUE and ID.
uintptr_t VALUE
Type that represents a Ruby object.
Definition: value.h:40