src/os/windows/vm/jvm_windows.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 #ifndef _JAVASOFT_JVM_MD_H_
  26 #define _JAVASOFT_JVM_MD_H_
  27 
  28 /*
  29  * This file is currently collecting system-specific dregs for the
  30  * JNI conversion, which should be sorted out later.
  31  */
  32 
  33 #include <windows.h>
  34 // #include <windef.h>
  35 // #include <winbase.h>
  36 
  37 
  38 // #include "jni.h"
  39 
  40 #define JNI_ONLOAD_SYMBOLS      {"_JNI_OnLoad@8", "JNI_OnLoad"}
  41 #define JNI_ONUNLOAD_SYMBOLS    {"_JNI_OnUnload@8", "JNI_OnUnload"}
  42 #define JVM_ONLOAD_SYMBOLS      {"_JVM_OnLoad@12", "JVM_OnLoad"}
  43 #define AGENT_ONLOAD_SYMBOLS    {"_Agent_OnLoad@12", "Agent_OnLoad"}
  44 #define AGENT_ONUNLOAD_SYMBOLS  {"_Agent_OnUnload@4", "Agent_OnUnload"}


  89 
  90 /* O Flags */
  91 
  92 #define JVM_O_RDONLY     O_RDONLY
  93 #define JVM_O_WRONLY     O_WRONLY
  94 #define JVM_O_RDWR       O_RDWR
  95 #define JVM_O_O_APPEND   O_APPEND
  96 #define JVM_O_EXCL       O_EXCL
  97 #define JVM_O_CREAT      O_CREAT
  98 #define JVM_O_DELETE     O_TEMPORARY
  99 
 100 /* Signals */
 101 
 102 #define JVM_SIGINT     SIGINT
 103 #define JVM_SIGTERM    SIGTERM
 104 
 105 #define SHUTDOWN1_SIGNAL SIGINT            /* Shutdown Hooks support.    */
 106 #define SHUTDOWN2_SIGNAL SIGTERM
 107 
 108 #endif /* !_JAVASOFT_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_WINDOWS_VM_JVM_WINDOWS_H
  26 #define OS_WINDOWS_VM_JVM_WINDOWS_H
  27 
  28 #ifndef _JAVASOFT_JVM_MD_H_
  29 #define _JAVASOFT_JVM_MD_H_
  30 
  31 /*
  32  * This file is currently collecting system-specific dregs for the
  33  * JNI conversion, which should be sorted out later.
  34  */
  35 
  36 #include <windows.h>
  37 // #include <windef.h>
  38 // #include <winbase.h>
  39 
  40 
  41 // #include "jni.h"
  42 
  43 #define JNI_ONLOAD_SYMBOLS      {"_JNI_OnLoad@8", "JNI_OnLoad"}
  44 #define JNI_ONUNLOAD_SYMBOLS    {"_JNI_OnUnload@8", "JNI_OnUnload"}
  45 #define JVM_ONLOAD_SYMBOLS      {"_JVM_OnLoad@12", "JVM_OnLoad"}
  46 #define AGENT_ONLOAD_SYMBOLS    {"_Agent_OnLoad@12", "Agent_OnLoad"}
  47 #define AGENT_ONUNLOAD_SYMBOLS  {"_Agent_OnUnload@4", "Agent_OnUnload"}


  92 
  93 /* O Flags */
  94 
  95 #define JVM_O_RDONLY     O_RDONLY
  96 #define JVM_O_WRONLY     O_WRONLY
  97 #define JVM_O_RDWR       O_RDWR
  98 #define JVM_O_O_APPEND   O_APPEND
  99 #define JVM_O_EXCL       O_EXCL
 100 #define JVM_O_CREAT      O_CREAT
 101 #define JVM_O_DELETE     O_TEMPORARY
 102 
 103 /* Signals */
 104 
 105 #define JVM_SIGINT     SIGINT
 106 #define JVM_SIGTERM    SIGTERM
 107 
 108 #define SHUTDOWN1_SIGNAL SIGINT            /* Shutdown Hooks support.    */
 109 #define SHUTDOWN2_SIGNAL SIGTERM
 110 
 111 #endif /* !_JAVASOFT_JVM_MD_H_ */
 112 
 113 #endif // OS_WINDOWS_VM_JVM_WINDOWS_H