aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/Win32Process.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/lang/Win32Process.java')
-rw-r--r--libjava/java/lang/Win32Process.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/libjava/java/lang/Win32Process.java b/libjava/java/lang/Win32Process.java
index baf2dc8ee38..0af24573eaa 100644
--- a/libjava/java/lang/Win32Process.java
+++ b/libjava/java/lang/Win32Process.java
@@ -21,6 +21,11 @@ import java.io.IOException;
// This is entirely internal to our implementation.
+// NOTE: when this is implemented, we'll need to add
+// HANDLE_FLAG_INHERIT in FileDescriptor and other places, to make
+// sure that file descriptors aren't inherited by the child process.
+// See _Jv_platform_close_on_exec.
+
// This file is copied to `ConcreteProcess.java' before compilation.
// Hence the class name apparently does not match the file name.
final class ConcreteProcess extends Process
@@ -57,7 +62,7 @@ final class ConcreteProcess extends Process
public ConcreteProcess (String[] progarray, String[] envp) throws IOException
{
- throw new Error("not implemented");
+ throw new IOException("not implemented");
}
}