hotspot/src/os/solaris/vm/jvm_solaris.h
author phh
Wed, 21 Dec 2011 15:48:16 -0500
changeset 11256 025cd1741566
parent 7397 5b173b4ca846
child 29460 520bbffc79ca
permissions -rw-r--r--
7091417: recvfrom's 6th input should be of type socklen_t Summary: Revamp class os's socket method formal args to match socket.h, insert casts in appropriate places, and copyin-copyout int*'s that s/b socklen_t*'s in jvm.cpp. Reviewed-by: coleenp, dholmes Contributed-by: erik.gahlin@oracle.com, rickard.backman@oracle.com, nils.loodin@oracle.com, markus.gronlund@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1998, 2010, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef OS_SOLARIS_VM_JVM_SOLARIS_H
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define OS_SOLARIS_VM_JVM_SOLARIS_H
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// HotSpot integration note:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// This is derived from the JDK classic file:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// "$JDK/src/solaris/javavm/export/jvm_md.h":15 (ver. 1.10 98/04/22)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// All local includes have been commented out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#ifndef JVM_MD_H
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#define JVM_MD_H
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 * This file is currently collecting system-specific dregs for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 * JNI conversion, which should be sorted out later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#include <dirent.h>             /* For DIR */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#include <sys/param.h>          /* For MAXPATHLEN */
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7397
diff changeset
    46
#include <sys/socket.h>         /* For socklen_t */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#include <unistd.h>             /* For F_OK, R_OK, W_OK */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#include <sys/int_types.h>      /* for intptr_t types (64 Bit cleanliness) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#define JNI_ONLOAD_SYMBOLS      {"JNI_OnLoad"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
#define JNI_ONUNLOAD_SYMBOLS    {"JNI_OnUnload"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#define JVM_ONLOAD_SYMBOLS      {"JVM_OnLoad"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#define AGENT_ONLOAD_SYMBOLS    {"Agent_OnLoad"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
#define AGENT_ONUNLOAD_SYMBOLS  {"Agent_OnUnload"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#define AGENT_ONATTACH_SYMBOLS  {"Agent_OnAttach"}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#define JNI_LIB_PREFIX "lib"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
#define JNI_LIB_SUFFIX ".so"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#define JVM_MAXPATHLEN MAXPATHLEN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#define JVM_R_OK    R_OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#define JVM_W_OK    W_OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#define JVM_X_OK    X_OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#define JVM_F_OK    F_OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 * File I/O
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
#include <sys/stat.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#include <fcntl.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#include <errno.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
/* O Flags */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#define JVM_O_RDONLY     O_RDONLY
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#define JVM_O_WRONLY     O_WRONLY
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#define JVM_O_RDWR       O_RDWR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
#define JVM_O_O_APPEND   O_APPEND
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#define JVM_O_EXCL       O_EXCL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#define JVM_O_CREAT      O_CREAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
/* Signal definitions */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
#define BREAK_SIGNAL     SIGQUIT           /* Thread dumping support.    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
#define INTERRUPT_SIGNAL SIGUSR1           /* Interruptible I/O support. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#define ASYNC_SIGNAL     SIGUSR2           /* Watcher & async err support. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
#define SHUTDOWN1_SIGNAL SIGHUP            /* Shutdown Hooks support.    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#define SHUTDOWN2_SIGNAL SIGINT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
#define SHUTDOWN3_SIGNAL SIGTERM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
/* alternative signals used with -XX:+UseAltSigs (or for backward
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
   compatibility with 1.2, -Xusealtsigs) flag. Chosen to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
   unlikely to conflict with applications embedding the vm */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#define ALT_INTERRUPT_SIGNAL (SIGRTMIN + SIGRTMAX)/2 /* alternate intio signal */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#define ALT_ASYNC_SIGNAL     ALT_INTERRUPT_SIGNAL+1  /* alternate async signal */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
/* With 1.4.1 libjsig added versioning: used in os_solaris.cpp and jsig.c */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#define JSIG_VERSION_1_4_1   0x30140100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif /* JVM_MD_H */
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   103
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   104
#endif // OS_SOLARIS_VM_JVM_SOLARIS_H