public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
@ 2005-10-26  8:48 ` aeby at graeff dot com
  2005-10-26  9:01 ` tromey at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-10-26  8:48 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from aeby at graeff dot com  2005-10-26 08:48 -------
I have just tested against 4.0.2 and the bug is still there (no surprise, of
course).


-- 

aeby at graeff dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|4.0.0 4.0.1                 |4.0.0 4.0.1 4.0.2


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
  2005-10-26  8:48 ` [Bug libgcj/23763] Runtime.getRuntime().exec() signalling aeby at graeff dot com
@ 2005-10-26  9:01 ` tromey at gcc dot gnu dot org
  2005-10-26 18:05 ` aeby at graeff dot com
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-10-26  9:01 UTC (permalink / raw)
  To: java-prs



------- Comment #7 from tromey at gcc dot gnu dot org  2005-10-26 09:01 -------
Sorry for the delay on this.
The patch looks reasonable enough to me.  It needs a small
amount of reformatting and a ChangeLog entry.
Also I think the call to signal() is not needed, a custom
handler is reset to the default on exec.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tromey at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-10-26 09:01:06
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
  2005-10-26  8:48 ` [Bug libgcj/23763] Runtime.getRuntime().exec() signalling aeby at graeff dot com
  2005-10-26  9:01 ` tromey at gcc dot gnu dot org
@ 2005-10-26 18:05 ` aeby at graeff dot com
  2005-11-08 19:44 ` tromey at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-10-26 18:05 UTC (permalink / raw)
  To: java-prs



------- Comment #8 from aeby at graeff dot com  2005-10-26 18:04 -------
no problem ...

I thought, resetting the signal handler to SIG_DFL before unblocking might be a
good idea in the (not very probable) case a SIGCHLD signal is either in the
signal queue or is otherwise received between sigprocmask() and exec(), just to
be safe :-)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-10-26 18:05 ` aeby at graeff dot com
@ 2005-11-08 19:44 ` tromey at gcc dot gnu dot org
  2005-11-08 20:59 ` tromey at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-11-08 19:44 UTC (permalink / raw)
  To: java-prs



------- Comment #9 from tromey at gcc dot gnu dot org  2005-11-08 19:44 -------
I'm handling this.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |tromey at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2005-10-26 09:01:06         |2005-11-08 19:44:20
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-11-08 19:44 ` tromey at gcc dot gnu dot org
@ 2005-11-08 20:59 ` tromey at gcc dot gnu dot org
  2005-11-08 21:00 ` tromey at gcc dot gnu dot org
  2005-11-08 21:01 ` tromey at gcc dot gnu dot org
  6 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-11-08 20:59 UTC (permalink / raw)
  To: java-prs



------- Comment #10 from tromey at gcc dot gnu dot org  2005-11-08 20:59 -------
Subject: Bug 23763

Author: tromey
Date: Tue Nov  8 20:59:20 2005
New Revision: 106654

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=106654
Log:
        PR libgcj/23763.  From aeby@graeff.com.
        * java/lang/natPosixProcess.cc (nativeSpawn): Unblock SIGCHLD
        before exec.

Modified:
    branches/gcc-4_0-branch/libjava/ChangeLog
    branches/gcc-4_0-branch/libjava/java/lang/natPosixProcess.cc


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2005-11-08 20:59 ` tromey at gcc dot gnu dot org
@ 2005-11-08 21:00 ` tromey at gcc dot gnu dot org
  2005-11-08 21:01 ` tromey at gcc dot gnu dot org
  6 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-11-08 21:00 UTC (permalink / raw)
  To: java-prs



------- Comment #11 from tromey at gcc dot gnu dot org  2005-11-08 21:00 -------
Subject: Bug 23763

Author: tromey
Date: Tue Nov  8 21:00:15 2005
New Revision: 106655

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=106655
Log:
        PR libgcj/23763.  From aeby@graeff.com.
        * java/lang/natPosixProcess.cc (nativeSpawn): Unblock SIGCHLD
        before exec.

Modified:
    trunk/libjava/ChangeLog
    trunk/libjava/java/lang/natPosixProcess.cc


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
       [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2005-11-08 21:00 ` tromey at gcc dot gnu dot org
@ 2005-11-08 21:01 ` tromey at gcc dot gnu dot org
  6 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-11-08 21:01 UTC (permalink / raw)
  To: java-prs



------- Comment #12 from tromey at gcc dot gnu dot org  2005-11-08 21:01 -------
Fix checked in.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
  2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
                   ` (4 preceding siblings ...)
  2005-09-15 14:25 ` aeby at graeff dot com
@ 2005-09-15 14:27 ` aeby at graeff dot com
  5 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-09-15 14:27 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From aeby at graeff dot com  2005-09-15 14:27 -------
Created an attachment (id=9734)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9734&action=view)
workaround: patch against GCC 4.0.1 unblocking SIGCHLD before execvp()


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
  2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
                   ` (3 preceding siblings ...)
  2005-09-10  2:20 ` pinskia at gcc dot gnu dot org
@ 2005-09-15 14:25 ` aeby at graeff dot com
  2005-09-15 14:27 ` aeby at graeff dot com
  5 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-09-15 14:25 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From aeby at graeff dot com  2005-09-15 14:24 -------
I don't think this bug is linked with 23758. No matter if you call unsafe
procedures before or after fork() SIGCHLD ist still blocked at the point where
execvp() is called. It seems the posix-threads code does explicitly block
SIGCHLD signals (block_sigchld() in libjava/posix-threads.cc) without unblocking
them before calling execvp(). Therefore, the child process runs with SIGCHLD
blocked, too.

I'm attaching a dirty hack(?) fixing the problem for me (just sets signal
handler for SIGCHLD to SIG_DFL and unblock SIGCHLD just before execvp()).

BTW: Am I the only person in the world that is trying to exec() external
programs from Java? :-))

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
  2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
                   ` (2 preceding siblings ...)
  2005-09-08  8:51 ` aeby at graeff dot com
@ 2005-09-10  2:20 ` pinskia at gcc dot gnu dot org
  2005-09-15 14:25 ` aeby at graeff dot com
  2005-09-15 14:27 ` aeby at graeff dot com
  5 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-09-10  2:20 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-09-10 02:20 -------
This is might be the same problem as described in PR 23758.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |23758
              nThis|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
  2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
  2005-09-07 13:17 ` [Bug libgcj/23763] " aeby at graeff dot com
  2005-09-07 13:18 ` aeby at graeff dot com
@ 2005-09-08  8:51 ` aeby at graeff dot com
  2005-09-10  2:20 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-09-08  8:51 UTC (permalink / raw)
  To: java-prs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.0.0 4.0.1
      Known to work|                            |3.3.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
  2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
  2005-09-07 13:17 ` [Bug libgcj/23763] " aeby at graeff dot com
@ 2005-09-07 13:18 ` aeby at graeff dot com
  2005-09-08  8:51 ` aeby at graeff dot com
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-09-07 13:18 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From aeby at graeff dot com  2005-09-07 13:18 -------
Created an attachment (id=9687)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9687&action=view)
Sample program that hangs when executed via Runtime.exec()


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug libgcj/23763] Runtime.getRuntime().exec() signalling
  2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
@ 2005-09-07 13:17 ` aeby at graeff dot com
  2005-09-07 13:18 ` aeby at graeff dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: aeby at graeff dot com @ 2005-09-07 13:17 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From aeby at graeff dot com  2005-09-07 13:17 -------
Created an attachment (id=9686)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9686&action=view)
Execs "exectest" and demonstrates how it hangs


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23763


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2005-11-08 21:01 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-23763-216@http.gcc.gnu.org/bugzilla/>
2005-10-26  8:48 ` [Bug libgcj/23763] Runtime.getRuntime().exec() signalling aeby at graeff dot com
2005-10-26  9:01 ` tromey at gcc dot gnu dot org
2005-10-26 18:05 ` aeby at graeff dot com
2005-11-08 19:44 ` tromey at gcc dot gnu dot org
2005-11-08 20:59 ` tromey at gcc dot gnu dot org
2005-11-08 21:00 ` tromey at gcc dot gnu dot org
2005-11-08 21:01 ` tromey at gcc dot gnu dot org
2005-09-07 13:13 [Bug libgcj/23763] New: " aeby at graeff dot com
2005-09-07 13:17 ` [Bug libgcj/23763] " aeby at graeff dot com
2005-09-07 13:18 ` aeby at graeff dot com
2005-09-08  8:51 ` aeby at graeff dot com
2005-09-10  2:20 ` pinskia at gcc dot gnu dot org
2005-09-15 14:25 ` aeby at graeff dot com
2005-09-15 14:27 ` aeby at graeff dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).