diff --git a/core/thread.rbs b/core/thread.rbs index b5d428baf..222d59293 100644 --- a/core/thread.rbs +++ b/core/thread.rbs @@ -829,13 +829,6 @@ class Thread < Object # def self.each_caller_location: () { (Backtrace::Location) -> void } -> nil - # Wraps the block in a single, VM-global - # [Mutex\#synchronize](https://ruby-doc.org/core-2.6.3/Mutex.html#method-i-synchronize) - # , returning the value of the block. A thread executing inside the - # exclusive section will only block other threads which also use the - # [::exclusive](Thread.downloaded.ruby_doc#method-c-exclusive) mechanism. - def self.exclusive: () { () -> untyped } -> untyped - #