To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=61856
------- Additional comments from [EMAIL PROTECTED] Mon Dec 11 06:36:12 -0800 2006 ------- Hi Ause, no idea (and no possible chance to fix) the unbreakability but I think I found the problem with the kill errors/closing shells, etc. CTRL-c sends a SIGINT to all processes in the process group and dmake (currently) sends a kill to all it's childs in its internal process queue. That is rather racy because a process (especially a native windows one) might be caught with a second kill while still closing. This is (should be) save on all sane *NIXs but on cygwin ... ;) The second problem is that after killing a process the PID might be used again and then get killed. Shouldn't happen, that's what wait() is for but ... ;) Can you try the following patch? --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
