mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
Merge
This commit is contained in:
commit
d77f96b0b2
684 changed files with 47732 additions and 20486 deletions
|
@ -412,7 +412,7 @@ final class ProcessImpl extends Process {
|
|||
new BufferedOutputStream(
|
||||
new FileOutputStream(newFileDescriptor(fds[0])));
|
||||
|
||||
stdout = (fds[1] == -1) ?
|
||||
stdout = (fds[1] == -1 || forceNullOutputStream) ?
|
||||
ProcessBuilder.NullInputStream.INSTANCE :
|
||||
new BufferedInputStream(
|
||||
stdout_inner_stream =
|
||||
|
@ -446,7 +446,7 @@ final class ProcessImpl extends Process {
|
|||
ProcessBuilder.NullOutputStream.INSTANCE :
|
||||
new ProcessPipeOutputStream(fds[0]);
|
||||
|
||||
stdout = (fds[1] == -1) ?
|
||||
stdout = (fds[1] == -1 || forceNullOutputStream) ?
|
||||
ProcessBuilder.NullInputStream.INSTANCE :
|
||||
new DeferredCloseProcessPipeInputStream(fds[1]);
|
||||
|
||||
|
|
|
@ -407,10 +407,6 @@ GetJavaProperties(JNIEnv *env)
|
|||
sprops.awt_toolkit = "sun.awt.X11.XToolkit";
|
||||
#endif
|
||||
|
||||
/* This is used only for debugging of font problems. */
|
||||
v = getenv("JAVA2D_FONTPATH");
|
||||
sprops.font_dir = v ? v : NULL;
|
||||
|
||||
#ifdef SI_ISALIST
|
||||
/* supported instruction sets */
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue