* lib/monitor.rb (mon_try_enter): call @mon_muetx.try_lock.

Thanks, Keiju ISHITSUKA. [ruby-dev:30507]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2007-03-12 22:24:32 +00:00
Родитель 9d5c0ea4a3
Коммит 060b631896
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Mar 13 07:23:20 2007 Shugo Maeda <shugo@ruby-lang.org>
* lib/monitor.rb (mon_try_enter): call @mon_muetx.try_lock.
Thanks, Keiju ISHITSUKA. [ruby-dev:30507]
Tue Mar 13 02:42:58 2007 Akinori MUSHA <knu@iDaemons.org>
* lib/cgi.rb (CGI::header): IIS >= 5.0 does not need the nph

Просмотреть файл

@ -145,7 +145,7 @@ module MonitorMixin
#
def mon_try_enter
if @mon_owner != Thread.current
unless @mon_owner.trylock
unless @mon_mutex.try_lock
return false
end
@mon_owner = Thread.current