Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby30 /
include /
ruby /
internal /
intern /
Delete
Unzip
Name
Size
Permission
Date
Action
select
[ DIR ]
drwxr-xr-x
2026-02-18 15:12
array.h
3.08
KB
-rw-r--r--
2024-06-26 19:25
bignum.h
4.15
KB
-rw-r--r--
2024-06-26 19:25
class.h
2.68
KB
-rw-r--r--
2024-06-26 19:25
compar.h
1.59
KB
-rw-r--r--
2024-06-26 19:25
complex.h
2.69
KB
-rw-r--r--
2024-06-26 19:25
cont.h
1.96
KB
-rw-r--r--
2024-06-26 19:25
dir.h
1.52
KB
-rw-r--r--
2024-06-26 19:25
enum.h
1.55
KB
-rw-r--r--
2024-06-26 19:25
enumerator.h
3.77
KB
-rw-r--r--
2024-06-26 19:25
error.h
3.37
KB
-rw-r--r--
2024-06-26 19:25
eval.h
2.19
KB
-rw-r--r--
2024-06-26 19:25
file.h
1.9
KB
-rw-r--r--
2024-06-26 19:25
gc.h
2.33
KB
-rw-r--r--
2024-06-26 19:25
hash.h
2.59
KB
-rw-r--r--
2024-06-26 19:25
io.h
2.82
KB
-rw-r--r--
2024-06-26 19:25
load.h
1.9
KB
-rw-r--r--
2024-06-26 19:25
marshal.h
1.69
KB
-rw-r--r--
2024-06-26 19:25
numeric.h
1.9
KB
-rw-r--r--
2024-06-26 19:25
object.h
3.15
KB
-rw-r--r--
2024-06-26 19:25
parse.h
2.1
KB
-rw-r--r--
2024-06-26 19:25
proc.h
2.4
KB
-rw-r--r--
2024-06-26 19:25
process.h
2.04
KB
-rw-r--r--
2024-06-26 19:25
random.h
2.21
KB
-rw-r--r--
2024-06-26 19:25
range.h
1.67
KB
-rw-r--r--
2024-06-26 19:25
rational.h
2.16
KB
-rw-r--r--
2024-06-26 19:25
re.h
2.12
KB
-rw-r--r--
2024-06-26 19:25
ruby.h
1.63
KB
-rw-r--r--
2024-06-26 19:25
select.h
2.17
KB
-rw-r--r--
2024-06-26 19:25
signal.h
1.71
KB
-rw-r--r--
2024-06-26 19:25
sprintf.h
1.89
KB
-rw-r--r--
2024-06-26 19:25
string.h
10.18
KB
-rw-r--r--
2024-06-26 19:25
struct.h
2.22
KB
-rw-r--r--
2024-06-26 19:25
thread.h
3.15
KB
-rw-r--r--
2024-06-26 19:25
time.h
2.07
KB
-rw-r--r--
2024-06-26 19:25
variable.h
3.38
KB
-rw-r--r--
2024-06-26 19:25
vm.h
3.01
KB
-rw-r--r--
2024-06-26 19:25
Save
Rename
#ifndef RBIMPL_INTERN_VM_H /*-*-C++-*-vi:se ft=cpp:*/ #define RBIMPL_INTERN_VM_H /** * @file * @author Ruby developers <ruby-core@ruby-lang.org> * @copyright This file is a part of the programming language Ruby. * Permission is hereby granted, to either redistribute and/or * modify this file, provided that the conditions mentioned in the * file COPYING are met. Consult the file for details. * @warning Symbols prefixed with either `RBIMPL` or `rbimpl` are * implementation details. Don't take them as canon. They could * rapidly appear then vanish. The name (path) of this header file * is also an implementation detail. Do not expect it to persist * at the place it is now. Developers are free to move it anywhere * anytime at will. * @note To ruby-core: remember that this header can be possibly * recursively included from extension libraries written in C++. * Do not expect for instance `__VA_ARGS__` is always available. * We assume C99 for ruby itself but we don't assume languages of * extension libraries. They could be written in C++98. * @brief Public APIs related to ::rb_cRubyVM. */ #include "ruby/internal/attr/noreturn.h" #include "ruby/internal/dllexport.h" #include "ruby/internal/value.h" RBIMPL_SYMBOL_EXPORT_BEGIN() /* vm.c */ int rb_sourceline(void); const char *rb_sourcefile(void); int rb_frame_method_id_and_class(ID *idp, VALUE *klassp); /* vm_eval.c */ VALUE rb_check_funcall(VALUE, ID, int, const VALUE*); VALUE rb_check_funcall_kw(VALUE, ID, int, const VALUE*, int); void rb_remove_method(VALUE, const char*); void rb_remove_method_id(VALUE, ID); VALUE rb_eval_cmd_kw(VALUE, VALUE, int); VALUE rb_apply(VALUE, ID, VALUE); VALUE rb_obj_instance_eval(int, const VALUE*, VALUE); VALUE rb_obj_instance_exec(int, const VALUE*, VALUE); VALUE rb_mod_module_eval(int, const VALUE*, VALUE); VALUE rb_mod_module_exec(int, const VALUE*, VALUE); /* vm_method.c */ #define HAVE_RB_DEFINE_ALLOC_FUNC 1 typedef VALUE (*rb_alloc_func_t)(VALUE); void rb_define_alloc_func(VALUE, rb_alloc_func_t); void rb_undef_alloc_func(VALUE); rb_alloc_func_t rb_get_alloc_func(VALUE); void rb_clear_constant_cache(void); void rb_clear_method_cache_by_class(VALUE); void rb_alias(VALUE, ID, ID); void rb_attr(VALUE,ID,int,int,int); int rb_method_boundp(VALUE, ID, int); int rb_method_basic_definition_p(VALUE, ID); int rb_obj_respond_to(VALUE, ID, int); int rb_respond_to(VALUE, ID); RBIMPL_ATTR_NORETURN() VALUE rb_f_notimplement(int argc, const VALUE *argv, VALUE obj, VALUE marker); #if !defined(RUBY_EXPORT) && defined(_WIN32) RUBY_EXTERN VALUE (*const rb_f_notimplement_)(int, const VALUE *, VALUE, VALUE marker); #define rb_f_notimplement (*rb_f_notimplement_) #endif /* vm_backtrace.c */ void rb_backtrace(void); VALUE rb_make_backtrace(void); RBIMPL_SYMBOL_EXPORT_END() #endif /* RBIMPL_INTERN_VM_H */