vanjab (Vanja Bucic)
- Login: vanjab
- Email: vanjab@icetec.biz
- Registered on: 07/22/2009
- Last sign in: 11/18/2009
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
11/18/2009
-
01:19 AM Ruby Bug #1525: Deadlock in Ruby 1.9's VM caused by ConditionVariable.wait and fork?
- =begin
Very good news, thanks. Where do I fetch the latest sources that include your patch so that I can test with our use case?
Thanks.
=end
07/24/2009
-
06:52 AM Ruby Bug #1525: Deadlock in Ruby 1.9's VM caused by ConditionVariable.wait and fork?
- =begin
In Reply to:
-- IMHO, from the respective of user, although it is hard, try not to use
-- any non-async-signal-safe functions in a forked child process before any
-- exec functions are called.
-- - Tetsu
Just so I...
07/22/2009
-
12:25 PM Ruby Bug #1525: Deadlock in Ruby 1.9's VM caused by ConditionVariable.wait and fork?
- =begin
To add my test case:
# ------------------------
require 'thread'
$stderr.puts RUBY_VERSION
$pid = 0
$t1 = Thread.new do
$pid = fork {
sleep(1)
$stderr.puts "thread 1 exiting"
exit
}
end... -
12:06 PM Ruby Bug #1525: Deadlock in Ruby 1.9's VM caused by ConditionVariable.wait and fork?
- =begin
Just to chime in on this issue.
It is affecting our company as well. We run our software on apple machines in a server environment.
Our application is a multithreaded daemon process that is accessing mysql database pretty ...