mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/thread.rb (Thread.exclusive): wrap method definition in
class Thread to enable rdoc to process. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5abcd32d57
commit
fb12e23803
2 changed files with 17 additions and 10 deletions
|
|
@ -21,16 +21,18 @@ if $DEBUG
|
|||
Thread.abort_on_exception = true
|
||||
end
|
||||
|
||||
#
|
||||
# FIXME: not documented in Pickaxe or Nutshell.
|
||||
#
|
||||
def Thread.exclusive
|
||||
_old = Thread.critical
|
||||
begin
|
||||
Thread.critical = true
|
||||
return yield
|
||||
ensure
|
||||
Thread.critical = _old
|
||||
class Thread
|
||||
#
|
||||
# FIXME: not documented in Pickaxe or Nutshell.
|
||||
#
|
||||
def Thread.exclusive
|
||||
_old = Thread.critical
|
||||
begin
|
||||
Thread.critical = true
|
||||
return yield
|
||||
ensure
|
||||
Thread.critical = _old
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue