Ruby 3.2.2p53 (2023-03-30 revision e51014f9c05aa65cbf203442d37fef7c12390015)
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
64void rb_load(VALUE path, int wrap);
65
90void rb_load_protect(VALUE path, int wrap, int *state);
91
101int rb_provided(const char *feature);
102
114int rb_feature_provided(const char *feature, const char **loading);
115
125void rb_provide(const char *feature);
126
140VALUE rb_f_require(VALUE self, VALUE feature);
141
178
197void 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:671
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:936
void rb_ext_ractor_safe(bool flag)
Asserts that the extension library that calls this function is aware of Ractor.
Definition load.c:1136
VALUE rb_require_string(VALUE feature)
Finds and loads the given feature, if absent.
Definition load.c:1291
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:643
void rb_load_protect(VALUE path, int wrap, int *state)
Identical to rb_load(), except it avoids potential global escapes.
Definition load.c:772
int rb_provided(const char *feature)
Queries if the given feature has already been loaded into the execution context.
Definition load.c:610
void rb_load(VALUE path, int wrap)
Loads and executes the Ruby program in the given file.
Definition load.c:764
Defines RBIMPL_ATTR_NONNULL.
#define RBIMPL_ATTR_NONNULL(list)
Wraps (or simulates) __attribute__((nonnull))
Definition nonnull.h:30
Defines VALUE and ID.
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40