src/os/solaris/vm/jvm_solaris.h

Print this page


   1 /*
   2  * Copyright (c) 1998, 2005, 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  *
  23  */
  24 



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


  81 
  82 
  83 /* Signal definitions */
  84 
  85 #define BREAK_SIGNAL     SIGQUIT           /* Thread dumping support.    */
  86 #define INTERRUPT_SIGNAL SIGUSR1           /* Interruptible I/O support. */
  87 #define ASYNC_SIGNAL     SIGUSR2           /* Watcher & async err support. */
  88 #define SHUTDOWN1_SIGNAL SIGHUP            /* Shutdown Hooks support.    */
  89 #define SHUTDOWN2_SIGNAL SIGINT
  90 #define SHUTDOWN3_SIGNAL SIGTERM
  91 /* alternative signals used with -XX:+UseAltSigs (or for backward
  92    compatibility with 1.2, -Xusealtsigs) flag. Chosen to be
  93    unlikely to conflict with applications embedding the vm */
  94 #define ALT_INTERRUPT_SIGNAL (SIGRTMIN + SIGRTMAX)/2 /* alternate intio signal */
  95 #define ALT_ASYNC_SIGNAL     ALT_INTERRUPT_SIGNAL+1  /* alternate async signal */
  96 
  97 /* With 1.4.1 libjsig added versioning: used in os_solaris.cpp and jsig.c */
  98 #define JSIG_VERSION_1_4_1   0x30140100
  99 
 100 #endif /* JVM_MD_H */


   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  *
  23  */
  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 
  37 #ifndef JVM_MD_H
  38 #define JVM_MD_H
  39 
  40 /*
  41  * This file is currently collecting system-specific dregs for the
  42  * JNI conversion, which should be sorted out later.
  43  */
  44 
  45 #include <dirent.h>             /* For DIR */
  46 #include <sys/param.h>          /* For MAXPATHLEN */
  47 #include <unistd.h>             /* For F_OK, R_OK, W_OK */


  84 
  85 
  86 /* Signal definitions */
  87 
  88 #define BREAK_SIGNAL     SIGQUIT           /* Thread dumping support.    */
  89 #define INTERRUPT_SIGNAL SIGUSR1           /* Interruptible I/O support. */
  90 #define ASYNC_SIGNAL     SIGUSR2           /* Watcher & async err support. */
  91 #define SHUTDOWN1_SIGNAL SIGHUP            /* Shutdown Hooks support.    */
  92 #define SHUTDOWN2_SIGNAL SIGINT
  93 #define SHUTDOWN3_SIGNAL SIGTERM
  94 /* alternative signals used with -XX:+UseAltSigs (or for backward
  95    compatibility with 1.2, -Xusealtsigs) flag. Chosen to be
  96    unlikely to conflict with applications embedding the vm */
  97 #define ALT_INTERRUPT_SIGNAL (SIGRTMIN + SIGRTMAX)/2 /* alternate intio signal */
  98 #define ALT_ASYNC_SIGNAL     ALT_INTERRUPT_SIGNAL+1  /* alternate async signal */
  99 
 100 /* With 1.4.1 libjsig added versioning: used in os_solaris.cpp and jsig.c */
 101 #define JSIG_VERSION_1_4_1   0x30140100
 102 
 103 #endif /* JVM_MD_H */
 104 
 105 #endif // OS_SOLARIS_VM_JVM_SOLARIS_H