src/os/solaris/vm/jvm_solaris.h

Print this page


   1 /*
   2  * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  24 
  25 #ifndef OS_SOLARIS_VM_JVM_SOLARIS_H
  26 #define OS_SOLARIS_VM_JVM_SOLARIS_H
  27 
  28 /*
  29 // HotSpot integration note:
  30 //
  31 // This is derived from the JDK classic file:
  32 // "$JDK/src/solaris/javavm/export/jvm_md.h":15 (ver. 1.10 98/04/22)
  33 // All local includes have been commented out.
  34 */
  35 
  36 #ifndef JVM_MD_H
  37 #define JVM_MD_H
  38 
  39 /*
  40  * This file is currently collecting system-specific dregs for the
  41  * JNI conversion, which should be sorted out later.
  42  */
  43 

  44 #include <dirent.h>             /* For DIR */

  45 #include <sys/param.h>          /* For MAXPATHLEN */
  46 #include <sys/socket.h>         /* For socklen_t */
  47 #include <unistd.h>             /* For F_OK, R_OK, W_OK */
  48 #include <sys/int_types.h>      /* for intptr_t types (64 Bit cleanliness) */
  49 
  50 #define JNI_ONLOAD_SYMBOLS      {"JNI_OnLoad"}
  51 #define JNI_ONUNLOAD_SYMBOLS    {"JNI_OnUnload"}
  52 #define JVM_ONLOAD_SYMBOLS      {"JVM_OnLoad"}
  53 #define AGENT_ONLOAD_SYMBOLS    {"Agent_OnLoad"}
  54 #define AGENT_ONUNLOAD_SYMBOLS  {"Agent_OnUnload"}
  55 #define AGENT_ONATTACH_SYMBOLS  {"Agent_OnAttach"}
  56 
  57 #define JNI_LIB_PREFIX "lib"
  58 #define JNI_LIB_SUFFIX ".so"
  59 
  60 #define JVM_MAXPATHLEN MAXPATHLEN
  61 
  62 #define JVM_R_OK    R_OK
  63 #define JVM_W_OK    W_OK
  64 #define JVM_X_OK    X_OK


   1 /*
   2  * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  24 
  25 #ifndef OS_SOLARIS_VM_JVM_SOLARIS_H
  26 #define OS_SOLARIS_VM_JVM_SOLARIS_H
  27 
  28 /*
  29 // HotSpot integration note:
  30 //
  31 // This is derived from the JDK classic file:
  32 // "$JDK/src/solaris/javavm/export/jvm_md.h":15 (ver. 1.10 98/04/22)
  33 // All local includes have been commented out.
  34 */
  35 
  36 #ifndef JVM_MD_H
  37 #define JVM_MD_H
  38 
  39 /*
  40  * This file is currently collecting system-specific dregs for the
  41  * JNI conversion, which should be sorted out later.
  42  */
  43 
  44 #define __USE_LEGACY_PROTOTYPES__
  45 #include <dirent.h>             /* For DIR */
  46 #undef __USE_LEGACY_PROTOTYPES__
  47 #include <sys/param.h>          /* For MAXPATHLEN */
  48 #include <sys/socket.h>         /* For socklen_t */
  49 #include <unistd.h>             /* For F_OK, R_OK, W_OK */
  50 #include <sys/int_types.h>      /* for intptr_t types (64 Bit cleanliness) */
  51 
  52 #define JNI_ONLOAD_SYMBOLS      {"JNI_OnLoad"}
  53 #define JNI_ONUNLOAD_SYMBOLS    {"JNI_OnUnload"}
  54 #define JVM_ONLOAD_SYMBOLS      {"JVM_OnLoad"}
  55 #define AGENT_ONLOAD_SYMBOLS    {"Agent_OnLoad"}
  56 #define AGENT_ONUNLOAD_SYMBOLS  {"Agent_OnUnload"}
  57 #define AGENT_ONATTACH_SYMBOLS  {"Agent_OnAttach"}
  58 
  59 #define JNI_LIB_PREFIX "lib"
  60 #define JNI_LIB_SUFFIX ".so"
  61 
  62 #define JVM_MAXPATHLEN MAXPATHLEN
  63 
  64 #define JVM_R_OK    R_OK
  65 #define JVM_W_OK    W_OK
  66 #define JVM_X_OK    X_OK