-
Bug
-
Resolution: Fixed
-
P4
-
1.1.6, 1.3.0, 1.4.0
-
hopper
-
generic, sparc
-
generic, solaris_2.6, solaris_8
-
Verified
This bug applies to the Kestrel reference release for Solaris
(and probably the Linux releases).
The JRE creates threads to buffer the stdout and stderr streams from
child processes created by Runtime.exec().
A sime test program:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
public class CP {
static void main(String[] args) {
try {
Process p = Runtime.getRuntime().exec("cat /dev/zero");
// pretend we are very busy.
Thread.sleep(1000000000);
} catch (Exception e) {
e.printStackTrace();
}
}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /files3/jdk1.3U/bin/java CP
java.lang.OutOfMemoryError
<<no stack trace available>>
^C
- duplicates
-
JDK-4425691 java.lang.Process/Runtime.exec is both inefficient and dangerous (Linux)
-
- Closed
-
-
JDK-4139302 (process) Buffering the input stream from an exec'd process considered harmful
-
- Closed
-
- relates to
-
JDK-4763397 (process) Subprocess hangs if parent does not read its output
-
- Closed
-