hotspot/src/os/windows/vm/jvm_windows.h
author ctornqvi
Tue, 22 Dec 2015 05:26:55 -0800
changeset 35212 7a6d0993a080
parent 27157 364276bc8d8b
permissions -rw-r--r--
8048521: Remove obsolete code from os_windows.cpp/hpp Reviewed-by: coleenp, rdurbin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
27157
364276bc8d8b 8057777: Cleanup of old and unused VM interfaces
fparain
parents: 13954
diff changeset
     2
 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10246
diff changeset
    25
#ifndef OS_WINDOWS_VM_JVM_WINDOWS_H
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10246
diff changeset
    26
#define OS_WINDOWS_VM_JVM_WINDOWS_H
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10246
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#ifndef _JAVASOFT_JVM_MD_H_
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#define _JAVASOFT_JVM_MD_H_
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
 * This file is currently collecting system-specific dregs for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 * JNI conversion, which should be sorted out later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
10246
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    36
// JDK7 requires VS2010
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    37
#if _MSC_VER >= 1600
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    38
// JDK7 minimum platform requirement: Windows XP
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    39
#if _WIN32_WINNT < 0x0501
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    40
#undef _WIN32_WINNT
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    41
#define _WIN32_WINNT  0x0501
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    42
#endif
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    43
#endif
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    44
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#include <windows.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
10246
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    47
#include <Psapi.h>
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10246
diff changeset
    48
#include <Tlhelp32.h>
10246
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 7397
diff changeset
    49
12593
b0e4fdf19f29 7157695: Add windows implementation of socket interface
twisti
parents: 11256
diff changeset
    50
typedef int socklen_t;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#define JNI_ONLOAD_SYMBOLS      {"_JNI_OnLoad@8", "JNI_OnLoad"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#define JNI_ONUNLOAD_SYMBOLS    {"_JNI_OnUnload@8", "JNI_OnUnload"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
#define JVM_ONLOAD_SYMBOLS      {"_JVM_OnLoad@12", "JVM_OnLoad"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#define AGENT_ONLOAD_SYMBOLS    {"_Agent_OnLoad@12", "Agent_OnLoad"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#define AGENT_ONUNLOAD_SYMBOLS  {"_Agent_OnUnload@4", "Agent_OnUnload"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#define AGENT_ONATTACH_SYMBOLS  {"_Agent_OnAttach@12", "Agent_OnAttach"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#define JNI_LIB_PREFIX ""
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#define JNI_LIB_SUFFIX ".dll"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
struct dirent {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    char d_name[MAX_PATH];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    struct dirent dirent;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    char *path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    HANDLE handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    WIN32_FIND_DATA find_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
} DIR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#include <stdlib.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#define JVM_MAXPATHLEN _MAX_PATH
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#define JVM_R_OK    4
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#define JVM_W_OK    2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#define JVM_X_OK    1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#define JVM_F_OK    0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#ifdef __cplusplus
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
JNIEXPORT void * JNICALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
JVM_GetThreadInterruptEvent();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#ifdef __cplusplus
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
} /* extern "C" */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#endif /* __cplusplus */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
 * File I/O
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
13954
7baa94958679 7198519: Broken build, hotspot-rt win USE_PRECOMPILED_HEADER=0
coleenp
parents: 12593
diff changeset
    97
#include <sys/stat.h>
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
/* O Flags */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#define JVM_O_RDONLY     O_RDONLY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#define JVM_O_WRONLY     O_WRONLY
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#define JVM_O_RDWR       O_RDWR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#define JVM_O_O_APPEND   O_APPEND
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
#define JVM_O_EXCL       O_EXCL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#define JVM_O_CREAT      O_CREAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
/* Signals */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#define JVM_SIGINT     SIGINT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
#define JVM_SIGTERM    SIGTERM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#define SHUTDOWN1_SIGNAL SIGINT            /* Shutdown Hooks support.    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#define SHUTDOWN2_SIGNAL SIGTERM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
#endif /* !_JAVASOFT_JVM_MD_H_ */
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10246
diff changeset
   117
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10246
diff changeset
   118
#endif // OS_WINDOWS_VM_JVM_WINDOWS_H