Current Path: > > opt > alt > ruby27 > include > ruby
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
backward | Directory | - | - | |
assert.h | File | 1514 bytes | March 30 2023 12:34:08. | |
backward.h | File | 2307 bytes | March 30 2023 12:34:08. | |
config-x86_64.h | File | 13305 bytes | June 06 2023 14:52:24. | |
config.h | File | 1215 bytes | June 06 2023 14:55:54. | |
debug.h | File | 4428 bytes | March 30 2023 12:34:08. | |
defines.h | File | 13251 bytes | March 30 2023 12:34:08. | |
digest.h | File | 1512 bytes | June 06 2023 14:54:35. | |
encoding.h | File | 18208 bytes | March 30 2023 12:34:08. | |
intern.h | File | 58587 bytes | March 30 2023 12:34:08. | |
io.h | File | 5303 bytes | March 30 2023 12:34:08. | |
missing.h | File | 5411 bytes | March 30 2023 12:34:08. | |
onigmo.h | File | 44658 bytes | March 30 2023 12:34:08. | |
oniguruma.h | File | 262 bytes | March 30 2023 12:34:08. | |
re.h | File | 1436 bytes | March 30 2023 12:34:08. | |
regex.h | File | 777 bytes | March 30 2023 12:34:08. | |
ruby.h | File | 99503 bytes | March 30 2023 12:34:08. | |
st.h | File | 7564 bytes | March 30 2023 12:34:08. | |
subst.h | File | 374 bytes | March 30 2023 12:34:08. | |
thread.h | File | 1347 bytes | March 30 2023 12:34:08. | |
thread_native.h | File | 1333 bytes | March 30 2023 12:34:08. | |
util.h | File | 1888 bytes | March 30 2023 12:34:08. | |
version.h | File | 1853 bytes | March 30 2023 12:34:08. | |
vm.h | File | 1559 bytes | March 30 2023 12:34:08. |
/********************************************************************** thread_native.h - $Author: ko1 $ created at: Wed May 14 19:37:31 2014 Copyright (C) 2014 Yukihiro Matsumoto **********************************************************************/ #ifndef RUBY_THREAD_NATIVE_H #define RUBY_THREAD_NATIVE_H 1 /* * This file contains wrapper APIs for native thread primitives * which Ruby interpreter uses. * * Now, we only suppors pthread and Windows threads. * * If you want to use Ruby's Mutex and so on to synchronize Ruby Threads, * please use Mutex directly. */ #if defined(_WIN32) #include <windows.h> typedef HANDLE rb_nativethread_id_t; typedef union rb_thread_lock_union { HANDLE mutex; CRITICAL_SECTION crit; } rb_nativethread_lock_t; #elif defined(HAVE_PTHREAD_H) #include <pthread.h> typedef pthread_t rb_nativethread_id_t; typedef pthread_mutex_t rb_nativethread_lock_t; #else #error "unsupported thread type" #endif RUBY_SYMBOL_EXPORT_BEGIN rb_nativethread_id_t rb_nativethread_self(); void rb_nativethread_lock_initialize(rb_nativethread_lock_t *lock); void rb_nativethread_lock_destroy(rb_nativethread_lock_t *lock); void rb_nativethread_lock_lock(rb_nativethread_lock_t *lock); void rb_nativethread_lock_unlock(rb_nativethread_lock_t *lock); RUBY_SYMBOL_EXPORT_END #endif
SILENT KILLER Tool