hotspot/src/os/solaris/vm/os_solaris.inline.hpp
author phh
Wed, 21 Dec 2011 15:48:16 -0500
changeset 11256 025cd1741566
parent 7405 e6fc8d3926f8
child 13195 be27e1b6a4b9
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) 1997, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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_OS_SOLARIS_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define OS_SOLARIS_VM_OS_SOLARIS_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/atomic.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#ifdef TARGET_OS_ARCH_solaris_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
# include "atomic_solaris_x86.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
# include "orderAccess_solaris_x86.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#ifdef TARGET_OS_ARCH_solaris_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
# include "atomic_solaris_sparc.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
# include "orderAccess_solaris_sparc.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    39
// System includes
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    40
#include <sys/param.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    41
#include <dlfcn.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    42
#include <sys/socket.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    43
#include <sys/poll.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    44
#include <sys/filio.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    45
#include <unistd.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    46
#include <netdb.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    47
#include <setjmp.h>
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    48
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
inline const char* os::file_separator() { return "/"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
inline const char* os::line_separator() { return "\n"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
inline const char* os::path_separator() { return ":"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
inline const char* os::jlong_format_specifier()   { return "%lld"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
inline const char* os::julong_format_specifier()  { return "%llu"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// File names are case-sensitive on windows only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
inline int os::file_name_strcmp(const char* s1, const char* s2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  return strcmp(s1, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
inline bool os::uses_stack_guard_pages() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
inline bool os::allocate_stack_guard_pages() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  assert(uses_stack_guard_pages(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int r = thr_main() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  guarantee (r == 0 || r == 1, "CR6501650 or CR6493689") ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// On Solaris, reservations are made on a page by page basis, nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
inline void os::split_reserved_memory(char *base, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                      size_t split, bool realloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// Bang the shadow pages if they need to be touched to be mapped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
inline void os::bang_stack_shadow_pages() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    82
inline void os::dll_unload(void *lib) { ::dlclose(lib); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    84
inline DIR* os::opendir(const char* dirname) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  assert(dirname != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  return ::opendir(dirname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    89
inline int os::readdir_buf_size(const char *path) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  int size = pathconf(path, _PC_NAME_MAX);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  return (size < 0 ? MAXPATHLEN : size) + sizeof(dirent) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
    94
inline struct dirent* os::readdir(DIR* dirp, dirent* dbuf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(dirp != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#if defined(_LP64) || defined(_GNU_SOURCE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  dirent* p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  int status;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  if((status = ::readdir_r(dirp, dbuf, &p)) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    errno = status;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    return p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
#else  // defined(_LP64) || defined(_GNU_SOURCE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  return ::readdir_r(dirp, dbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#endif // defined(_LP64) || defined(_GNU_SOURCE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   110
inline int os::closedir(DIR *dirp) {
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   111
  assert(dirp != NULL, "argument is NULL");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  return ::closedir(dirp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
//////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// macros for interruptible io and system calls and system call restarting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#define _INTERRUPTIBLE(_setup, _cmd, _result, _thread, _clear, _before, _after, _int_enable) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  _setup; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _before; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  OSThread* _osthread = _thread->osthread(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  if (_int_enable && _thread->has_last_Java_frame()) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    /* this is java interruptible io stuff */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    if (os::is_interrupted(_thread, _clear))  { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      os::Solaris::bump_interrupted_before_count(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      _result = OS_INTRPT; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    } else { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      /* _cmd always expands to an assignment to _result */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      if ((_cmd) < 0 && errno == EINTR  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
       && os::is_interrupted(_thread, _clear)) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        os::Solaris::bump_interrupted_during_count(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
        _result = OS_INTRPT; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  } else { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    /* this is normal blocking io stuff */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _cmd; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  _after; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// Interruptible io support + restarting of interrupted system calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
#ifndef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
#define INTERRUPTIBLE(_cmd, _result, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  _INTERRUPTIBLE( JavaThread* _thread = (JavaThread*)ThreadLocalStorage::thread(),_result = _cmd, _result, _thread, _clear, , , UseVMInterruptibleIO); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
} while((_result == OS_ERR) && (errno == EINTR))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// This adds an assertion that it is only called from thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// The call overhead is skipped for performance in product mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#define INTERRUPTIBLE(_cmd, _result, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible_native(), _result = _cmd, _result, _thread, _clear, , os::Solaris::cleanup_interruptible_native(_thread), UseVMInterruptibleIO ); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
} while((_result == OS_ERR) && (errno == EINTR))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// Used for calls from _thread_in_vm, not from _thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
#define INTERRUPTIBLE_VM(_cmd, _result, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible(), _result = _cmd, _result, _thread, _clear, , os::Solaris::cleanup_interruptible(_thread), UseVMInterruptibleIO ); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
} while((_result == OS_ERR) && (errno == EINTR))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
/* Use NORESTART when the system call cannot return EINTR, when something other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
   than a system call is being invoked, or when the caller must do EINTR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
   handling. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
#ifndef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#define INTERRUPTIBLE_NORESTART(_cmd, _result, _clear) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  _INTERRUPTIBLE( JavaThread* _thread = (JavaThread*)ThreadLocalStorage::thread(),_result = _cmd, _result, _thread, _clear, , , UseVMInterruptibleIO)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// This adds an assertion that it is only called from thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// The call overhead is skipped for performance in product mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#define INTERRUPTIBLE_NORESTART(_cmd, _result, _clear) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible_native(), _result = _cmd, _result, _thread, _clear, , os::Solaris::cleanup_interruptible_native(_thread), UseVMInterruptibleIO )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// Don't attend to UseVMInterruptibleIO. Always allow interruption.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
// Also assumes that it is called from the _thread_blocked state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// Used by os_sleep().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
#define INTERRUPTIBLE_NORESTART_VM_ALWAYS(_cmd, _result, _thread, _clear) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  _INTERRUPTIBLE(os::Solaris::setup_interruptible_already_blocked(_thread), _result = _cmd, _result, _thread, _clear, , , true )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#define INTERRUPTIBLE_RETURN_INT(_cmd, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    INTERRUPTIBLE(_cmd, _result, _clear); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  } while((_result == OS_ERR) && (errno == EINTR)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
#define INTERRUPTIBLE_RETURN_INT_VM(_cmd, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    INTERRUPTIBLE_VM(_cmd, _result, _clear); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  } while((_result == OS_ERR) && (errno == EINTR)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
#define INTERRUPTIBLE_RETURN_INT_NORESTART(_cmd, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  INTERRUPTIBLE_NORESTART(_cmd, _result, _clear); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
/* Use the RESTARTABLE macros when interruptible io is not needed */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
#define RESTARTABLE(_cmd, _result) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    _result = _cmd; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  } while((_result == OS_ERR) && (errno == EINTR)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#define RESTARTABLE_RETURN_INT(_cmd) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  RESTARTABLE(_cmd, _result); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
} while(false)
388
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   228
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   229
inline bool os::numa_has_static_binding()   { return false; }
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   230
inline bool os::numa_has_group_homing()     { return true;  }
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   231
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   232
inline int    os::socket(int domain, int type, int protocol) {
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   233
  return ::socket(domain, type, protocol);
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   234
}
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   235
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   236
inline int    os::listen(int fd, int count) {
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   237
  if (fd < 0) return OS_ERR;
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   238
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   239
  return ::listen(fd, count);
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   240
}
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   241
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   242
inline int os::socket_shutdown(int fd, int howto){
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   243
  return ::shutdown(fd, howto);
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   244
}
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   245
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   246
inline int os::get_sock_name(int fd, struct sockaddr* him, socklen_t* len){
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   247
  return ::getsockname(fd, him, len);
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   248
}
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   249
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   250
inline int os::get_host_name(char* name, int namelen){
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   251
  return ::gethostname(name, namelen);
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   252
}
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   253
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   254
inline struct hostent* os::get_host_by_name(char* name) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   255
  return ::gethostbyname(name);
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   256
}
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   257
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   258
inline int os::get_sock_opt(int fd, int level, int optname,
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   259
                            char* optval, socklen_t* optlen) {
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   260
  return ::getsockopt(fd, level, optname, optval, optlen);
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   261
}
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   262
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   263
inline int os::set_sock_opt(int fd, int level, int optname,
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 7405
diff changeset
   264
                            const char *optval, socklen_t optlen) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   265
  return ::setsockopt(fd, level, optname, optval, optlen);
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   266
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   267
#endif // OS_SOLARIS_VM_OS_SOLARIS_INLINE_HPP