| java.lang.Object java.lang.Process org.apache.harmony.luni.internal.process.SystemProcess
closeImpl | native void closeImpl()(Code) | | Internal implementation of the code that closes the handle.
|
create | public static Process create(String[] progArray, String[] envp, File directory) throws IOException(Code) | | Constructs a process connected to an OS process.
Parameters: progArray - the array containing the program to execute as well asany arguments to the program. Parameters: envp - the array containing the environment to start the new processin. Parameters: directory - the directory to start the process in, or null The new process. throws: IOException - when a problem occurs throws: NullPointerException - when progArray or envp are null, or containa null element in the array. |
createImpl | native protected static synchronized long[] createImpl(Process p, byte[][] progArray, byte[][] envp, byte[] dir) throws IOException(Code) | | |
destroy | public void destroy()(Code) | | |
exitValue | public int exitValue()(Code) | | |
waitForCompletionImpl | native int waitForCompletionImpl()(Code) | | Internal implementation of the code that waits for the process to
complete.
int The exit value of the process. |
|
|