1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

win32/mkexports.rb: do not export internal symbols

Functions using `rb_thread_t` and `rb_execution_context_t` are
internal use only.
This commit is contained in:
Nobuyoshi Nakada 2020-05-10 14:54:16 +09:00
parent 7a7854d8c1
commit 3fcf7f0271
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -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)