< prev index next >

src/java.base/unix/native/libjava/ProcessHandleImpl_unix.h

Print this page
rev 59105 : imported patch corelibs


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #include <sys/types.h>
  27 
  28 /*
  29  * Declaration of ProcessHandleImpl functions common on all Unix platforms.
  30  * 'unix_' functions have a single implementation in ProcessHandleImpl_unix.c
  31  * 'os_' prefixed functions have different, os-specific implementations in the
  32  * various ProcessHandleImpl_{linux,macosx,solaris,aix}.c files.
  33  * See ProcessHandleImpl_unix.c for more details.
  34  */
  35 
  36 /* Field id for jString 'command' in java.lang.ProcessHandleImpl.Info */
  37 extern jfieldID ProcessHandleImpl_Info_commandID;
  38 
  39 /* Field id for jString 'commandLine' in java.lang.ProcessHandleImpl.Info */
  40 extern jfieldID ProcessHandleImpl_Info_commandLineID;
  41 
  42 /* Field id for jString[] 'arguments' in java.lang.ProcessHandleImpl.Info */
  43 extern jfieldID ProcessHandleImpl_Info_argumentsID;
  44 
  45 /* Field id for jlong 'totalTime' in java.lang.ProcessHandleImpl.Info */
  46 extern jfieldID ProcessHandleImpl_Info_totalTimeID;
  47 
  48 /* Field id for jlong 'startTime' in java.lang.ProcessHandleImpl.Info */
  49 extern jfieldID ProcessHandleImpl_Info_startTimeID;
  50 
  51 /* Field id for jString 'user' in java.lang.ProcessHandleImpl.Info */
  52 extern jfieldID ProcessHandleImpl_Info_userID;




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #include <sys/types.h>
  27 
  28 /*
  29  * Declaration of ProcessHandleImpl functions common on all Unix platforms.
  30  * 'unix_' functions have a single implementation in ProcessHandleImpl_unix.c
  31  * 'os_' prefixed functions have different, os-specific implementations in the
  32  * various ProcessHandleImpl_{linux,macosx,aix}.c files.
  33  * See ProcessHandleImpl_unix.c for more details.
  34  */
  35 
  36 /* Field id for jString 'command' in java.lang.ProcessHandleImpl.Info */
  37 extern jfieldID ProcessHandleImpl_Info_commandID;
  38 
  39 /* Field id for jString 'commandLine' in java.lang.ProcessHandleImpl.Info */
  40 extern jfieldID ProcessHandleImpl_Info_commandLineID;
  41 
  42 /* Field id for jString[] 'arguments' in java.lang.ProcessHandleImpl.Info */
  43 extern jfieldID ProcessHandleImpl_Info_argumentsID;
  44 
  45 /* Field id for jlong 'totalTime' in java.lang.ProcessHandleImpl.Info */
  46 extern jfieldID ProcessHandleImpl_Info_totalTimeID;
  47 
  48 /* Field id for jlong 'startTime' in java.lang.ProcessHandleImpl.Info */
  49 extern jfieldID ProcessHandleImpl_Info_startTimeID;
  50 
  51 /* Field id for jString 'user' in java.lang.ProcessHandleImpl.Info */
  52 extern jfieldID ProcessHandleImpl_Info_userID;


< prev index next >