hotspot/src/os/bsd/vm/os_bsd.inline.hpp
changeset 22891 1f5d1fff23fa
parent 18078 10417cf9967d
child 24239 db81abb281bc
equal deleted inserted replaced
22890:7ca31eb1a41f 22891:1f5d1fff23fa
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2014, 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.
   284 inline int os::set_sock_opt(int fd, int level, int optname,
   284 inline int os::set_sock_opt(int fd, int level, int optname,
   285                             const char* optval, socklen_t optlen) {
   285                             const char* optval, socklen_t optlen) {
   286   return ::setsockopt(fd, level, optname, optval, optlen);
   286   return ::setsockopt(fd, level, optname, optval, optlen);
   287 }
   287 }
   288 
   288 
       
   289 inline bool os::supports_monotonic_clock() {
       
   290   return Bsd::_clock_gettime != NULL;
       
   291 }
       
   292 
   289 #endif // OS_BSD_VM_OS_BSD_INLINE_HPP
   293 #endif // OS_BSD_VM_OS_BSD_INLINE_HPP