3261N/A * Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved. 0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 0N/A * This code is free software; you can redistribute it and/or modify it 0N/A * under the terms of the GNU General Public License version 2 only, as 2362N/A * published by the Free Software Foundation. Oracle designates this 0N/A * particular file as subject to the "Classpath" exception as provided 2362N/A * by Oracle in the LICENSE file that accompanied this code. 0N/A * This code is distributed in the hope that it will be useful, but WITHOUT 0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 0N/A * version 2 for more details (a copy is included in the LICENSE file that 0N/A * accompanied this code). 0N/A * You should have received a copy of the GNU General Public License version 0N/A * 2 along with this work; if not, write to the Free Software Foundation, 0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 2362N/A * or visit www.oracle.com if you need additional information or have any 0N/A/* java.lang.Process subclass in the UNIX environment. 0N/A * @author Mario Wolczko and Ross Knippel. 0N/A /* this is for the reaping thread */ 25N/A * Create a process using fork(2) and exec(2). 25N/A * @param std_fds array of file descriptors. Indexes 0, 1, and 25N/A * 2 correspond to standard input, standard output and 25N/A * standard error, respectively. On input, a value of -1 25N/A * means to create a pipe to connect child and parent 25N/A * processes. On output, a value which is not -1 is the 25N/A * parent pipe fd corresponding to the pipe which has 25N/A * been created. An element of this array is -1 on input 25N/A * if and only if it is <em>not</em> -1 on output. 25N/A * @return the pid of the subprocess 25N/A * For each subprocess forked a corresponding reaper thread 25N/A * is started. That thread is the only thread which waits 25N/A * for the subprocess to terminate and it doesn't hold any 25N/A * locks while doing so. This design allows waitFor() and 25N/A * exitStatus() to be safely executed in parallel (and they 25N/A * need no native code). 25N/A // There is a risk that pid will be recycled, causing us to 25N/A // kill the wrong process! So we only terminate processes 25N/A // that appear to still be running. Even with this check, 25N/A // there is an unavoidable race condition here, but the window 25N/A // is very small, and OSes try hard to not recycle pids too 25N/A // soon, so this is quite safe. 0N/A // A FileInputStream that supports the deferment of the actual close 0N/A // operation until the last pending I/O operation on the stream has 0N/A // finished. This is required on Solaris because we must close the stdin 0N/A // and stdout streams in the destroy method in order to reclaim the 0N/A // underlying file descriptors. Doing so, however, causes any thread 0N/A // currently blocked in a read on one of those streams to receive an 0N/A // IOException("Bad file number"), which is incompatible with historical 0N/A // behavior. By deferring the close we allow any pending reads to see -1 0N/A // (EOF) as they did before. 25N/A // stc is the actual stream to be closed; it might be this object, or 25N/A // it might be an upstream object for which this object is downstream. 0N/A /* This routine initializes JNI field offsets for the class */