mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/shell/process-controller.rb: fix thread synchronization problem for [ruby-dev:30477].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4cd2a9864c
commit
835f040be2
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Mar 6 16:35:04 2007 Keiju Ishitsuka <keiju@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/shell/process-controller.rb: fix thread synchronization problem for [ruby-dev:30477].
|
||||||
|
|
||||||
Tue Mar 6 11:53:25 2007 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Tue Mar 6 11:53:25 2007 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/sample/irbtkw.rbw: fails to exit process.
|
* ext/tk/sample/irbtkw.rbw: fails to exit process.
|
||||||
|
|
|
@ -246,9 +246,11 @@ class Shell
|
||||||
redo
|
redo
|
||||||
end
|
end
|
||||||
Thread.exclusive do
|
Thread.exclusive do
|
||||||
terminate_job(command)
|
@job_monitor.synchronize do
|
||||||
@job_condition.signal
|
terminate_job(command)
|
||||||
command.notify "job(%id) finish.", @shell.debug?
|
@job_condition.signal
|
||||||
|
command.notify "job(%id) finish.", @shell.debug?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue