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:
parent
7a7854d8c1
commit
3fcf7f0271
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue