diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-05-10 14:54:16 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-05-12 10:02:39 +0900 |
commit | 3fcf7f0271a3f29f91b6bda60e518f0fcb026eda (patch) | |
tree | 956989297a314ef756e79bac93482ddd49201309 /win32 | |
parent | 7a7854d8c18b0ec15b3c050aff179f9753a44210 (diff) | |
download | ruby-3fcf7f0271a3f29f91b6bda60e518f0fcb026eda.tar.gz |
win32/mkexports.rb: do not export internal symbols
Functions using `rb_thread_t` and `rb_execution_context_t` are
internal use only.
Diffstat (limited to 'win32')
-rwxr-xr-x | win32/mkexports.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb index 336a757b8f..dfbb175170 100755 --- a/win32/mkexports.rb +++ b/win32/mkexports.rb @@ -7,7 +7,7 @@ module RbConfig end class Exports - PrivateNames = /(?:Init_|InitVM_|ruby_static_id_|DllMain\b)/ + PrivateNames = /(?:Init_|InitVM_|ruby_static_id_|threadptr|_ec_|DllMain\b)/ @@subclass = [] def self.inherited(klass) |