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