< prev index next >

src/os/windows/vm/jvm_windows.h

Print this page


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


  99 JVM_GetThreadInterruptEvent();
 100 
 101 #ifdef __cplusplus
 102 } /* extern "C" */
 103 #endif /* __cplusplus */
 104 
 105 /*
 106  * File I/O
 107  */
 108 
 109 #include <sys/stat.h>
 110 
 111 /* O Flags */
 112 
 113 #define JVM_O_RDONLY     O_RDONLY
 114 #define JVM_O_WRONLY     O_WRONLY
 115 #define JVM_O_RDWR       O_RDWR
 116 #define JVM_O_O_APPEND   O_APPEND
 117 #define JVM_O_EXCL       O_EXCL
 118 #define JVM_O_CREAT      O_CREAT
 119 #define JVM_O_DELETE     O_TEMPORARY
 120 
 121 /* Signals */
 122 
 123 #define JVM_SIGINT     SIGINT
 124 #define JVM_SIGTERM    SIGTERM
 125 
 126 #define SHUTDOWN1_SIGNAL SIGINT            /* Shutdown Hooks support.    */
 127 #define SHUTDOWN2_SIGNAL SIGTERM
 128 
 129 #endif /* !_JAVASOFT_JVM_MD_H_ */
 130 
 131 #endif // OS_WINDOWS_VM_JVM_WINDOWS_H
   1 /*
   2  * Copyright (c) 1998, 2014, 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  *


  99 JVM_GetThreadInterruptEvent();
 100 
 101 #ifdef __cplusplus
 102 } /* extern "C" */
 103 #endif /* __cplusplus */
 104 
 105 /*
 106  * File I/O
 107  */
 108 
 109 #include <sys/stat.h>
 110 
 111 /* O Flags */
 112 
 113 #define JVM_O_RDONLY     O_RDONLY
 114 #define JVM_O_WRONLY     O_WRONLY
 115 #define JVM_O_RDWR       O_RDWR
 116 #define JVM_O_O_APPEND   O_APPEND
 117 #define JVM_O_EXCL       O_EXCL
 118 #define JVM_O_CREAT      O_CREAT

 119 
 120 /* Signals */
 121 
 122 #define JVM_SIGINT     SIGINT
 123 #define JVM_SIGTERM    SIGTERM
 124 
 125 #define SHUTDOWN1_SIGNAL SIGINT            /* Shutdown Hooks support.    */
 126 #define SHUTDOWN2_SIGNAL SIGTERM
 127 
 128 #endif /* !_JAVASOFT_JVM_MD_H_ */
 129 
 130 #endif // OS_WINDOWS_VM_JVM_WINDOWS_H
< prev index next >