src/os/windows/vm/jvm_windows.h

Tue, 23 Nov 2010 13:22:55 -0800

author
stefank
date
Tue, 23 Nov 2010 13:22:55 -0800
changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 3031
b1cbb0907b36
permissions
-rw-r--r--

6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg

duke@435 1 /*
stefank@2314 2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 #ifndef _JAVASOFT_JVM_MD_H_
duke@435 26 #define _JAVASOFT_JVM_MD_H_
duke@435 27
duke@435 28 /*
duke@435 29 * This file is currently collecting system-specific dregs for the
duke@435 30 * JNI conversion, which should be sorted out later.
duke@435 31 */
duke@435 32
duke@435 33 #include <windows.h>
duke@435 34 // #include <windef.h>
duke@435 35 // #include <winbase.h>
duke@435 36
duke@435 37
duke@435 38 // #include "jni.h"
duke@435 39
duke@435 40 #define JNI_ONLOAD_SYMBOLS {"_JNI_OnLoad@8", "JNI_OnLoad"}
duke@435 41 #define JNI_ONUNLOAD_SYMBOLS {"_JNI_OnUnload@8", "JNI_OnUnload"}
duke@435 42 #define JVM_ONLOAD_SYMBOLS {"_JVM_OnLoad@12", "JVM_OnLoad"}
duke@435 43 #define AGENT_ONLOAD_SYMBOLS {"_Agent_OnLoad@12", "Agent_OnLoad"}
duke@435 44 #define AGENT_ONUNLOAD_SYMBOLS {"_Agent_OnUnload@4", "Agent_OnUnload"}
duke@435 45 #define AGENT_ONATTACH_SYMBOLS {"_Agent_OnAttach@12", "Agent_OnAttach"}
duke@435 46
duke@435 47 #define JNI_LIB_PREFIX ""
duke@435 48 #define JNI_LIB_SUFFIX ".dll"
duke@435 49
duke@435 50 struct dirent {
duke@435 51 char d_name[MAX_PATH];
duke@435 52 };
duke@435 53
duke@435 54 typedef struct {
duke@435 55 struct dirent dirent;
duke@435 56 char *path;
duke@435 57 HANDLE handle;
duke@435 58 WIN32_FIND_DATA find_data;
duke@435 59 } DIR;
duke@435 60
duke@435 61 #include <stdlib.h>
duke@435 62
duke@435 63 #define JVM_MAXPATHLEN _MAX_PATH
duke@435 64
duke@435 65 #define JVM_R_OK 4
duke@435 66 #define JVM_W_OK 2
duke@435 67 #define JVM_X_OK 1
duke@435 68 #define JVM_F_OK 0
duke@435 69
duke@435 70 #ifdef __cplusplus
duke@435 71 extern "C" {
duke@435 72 #endif
duke@435 73
duke@435 74 JNIEXPORT void * JNICALL
duke@435 75 JVM_GetThreadInterruptEvent();
duke@435 76
duke@435 77 #ifdef __cplusplus
duke@435 78 } /* extern "C" */
duke@435 79 #endif /* __cplusplus */
duke@435 80
duke@435 81 /*
duke@435 82 * File I/O
duke@435 83 */
duke@435 84
duke@435 85 // #include <sys/types.h>
duke@435 86 // #include <sys/stat.h>
duke@435 87 // #include <fcntl.h>
duke@435 88 // #include <errno.h>
duke@435 89
duke@435 90 /* O Flags */
duke@435 91
duke@435 92 #define JVM_O_RDONLY O_RDONLY
duke@435 93 #define JVM_O_WRONLY O_WRONLY
duke@435 94 #define JVM_O_RDWR O_RDWR
duke@435 95 #define JVM_O_O_APPEND O_APPEND
duke@435 96 #define JVM_O_EXCL O_EXCL
duke@435 97 #define JVM_O_CREAT O_CREAT
duke@435 98 #define JVM_O_DELETE O_TEMPORARY
duke@435 99
duke@435 100 /* Signals */
duke@435 101
duke@435 102 #define JVM_SIGINT SIGINT
duke@435 103 #define JVM_SIGTERM SIGTERM
duke@435 104
duke@435 105 #define SHUTDOWN1_SIGNAL SIGINT /* Shutdown Hooks support. */
duke@435 106 #define SHUTDOWN2_SIGNAL SIGTERM
duke@435 107
duke@435 108 #endif /* !_JAVASOFT_JVM_MD_H_ */

mercurial