comparison src/os/solaris/vm/os_solaris.inline.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 6c9332549827
children 7848fc12602b
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
1 /* 1 /*
2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
258 258
259 inline int os::set_sock_opt(int fd, int level, int optname, 259 inline int os::set_sock_opt(int fd, int level, int optname,
260 const char *optval, socklen_t optlen) { 260 const char *optval, socklen_t optlen) {
261 return ::setsockopt(fd, level, optname, optval, optlen); 261 return ::setsockopt(fd, level, optname, optval, optlen);
262 } 262 }
263
264 inline bool os::supports_monotonic_clock() {
265 // javaTimeNanos() is monotonic on Solaris, see getTimeNanos() comments
266 return true;
267 }
268
269 #endif // OS_SOLARIS_VM_OS_SOLARIS_INLINE_HPP 263 #endif // OS_SOLARIS_VM_OS_SOLARIS_INLINE_HPP