1 /* 2 * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 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 7 * published by the Free Software Foundation. 8 * 9 * This code is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * version 2 for more details (a copy is included in the LICENSE file that 13 * accompanied this code). 14 * 15 * You should have received a copy of the GNU General Public License version 16 * 2 along with this work; if not, write to the Free Software Foundation, 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 * 23 */ 24 25 #ifndef OS_LINUX_VM_OS_LINUX_INLINE_HPP 26 #define OS_LINUX_VM_OS_LINUX_INLINE_HPP 27 28 #include "runtime/os.hpp" 29 30 // System includes 31 32 #include <unistd.h> 33 #include <sys/socket.h> 34 #include <poll.h> 35 #include <netdb.h> 36 37 // File names are case-sensitive on windows only 38 inline int os::file_name_strcmp(const char* s1, const char* s2) { 39 return strcmp(s1, s2); 40 } 41 42 inline bool os::obsolete_option(const JavaVMOption *option) { 43 return false; 44 } 45 46 inline bool os::uses_stack_guard_pages() { 47 return true; 48 } 49 50 inline bool os::must_commit_stack_guard_pages() { 51 assert(uses_stack_guard_pages(), "sanity check"); 52 return true; 53 } 54 55 56 // On Linux, reservations are made on a page by page basis, nothing to do. 57 inline void os::pd_split_reserved_memory(char *base, size_t size, 58 size_t split, bool realloc) { 59 } 60 61 62 // Bang the shadow pages if they need to be touched to be mapped. 63 inline void os::map_stack_shadow_pages(address sp) { 64 } 65 66 inline void os::dll_unload(void *lib) { 67 ::dlclose(lib); 68 } 69 70 inline const int os::default_file_open_flags() { return 0;} 71 72 inline DIR* os::opendir(const char* dirname) 73 { 74 assert(dirname != NULL, "just checking"); 75 return ::opendir(dirname); 76 } 77 78 inline int os::readdir_buf_size(const char *path) 79 { 80 return NAME_MAX + sizeof(dirent) + 1; 81 } 82 83 inline jlong os::lseek(int fd, jlong offset, int whence) { 84 return (jlong) ::lseek64(fd, offset, whence); 85 } 86 87 inline int os::fsync(int fd) { 88 return ::fsync(fd); 89 } 90 91 inline char* os::native_path(char *path) { 92 return path; 93 } 94 95 inline int os::ftruncate(int fd, jlong length) { 96 return ::ftruncate64(fd, length); 97 } 98 99 inline struct dirent* os::readdir(DIR* dirp) 100 { 101 dirent* p; 102 assert(dirp != NULL, "just checking"); 103 104 p = ::readdir(dirp); 105 if (errno == 0) { 106 return p; 107 } else { 108 return NULL; 109 } 110 } 111 112 inline int os::closedir(DIR *dirp) { 113 assert(dirp != NULL, "argument is NULL"); 114 return ::closedir(dirp); 115 } 116 117 // macros for restartable system calls 118 119 #define RESTARTABLE(_cmd, _result) do { \ 120 _result = _cmd; \ 121 } while(((int)_result == OS_ERR) && (errno == EINTR)) 122 123 #define RESTARTABLE_RETURN_INT(_cmd) do { \ 124 int _result; \ 125 RESTARTABLE(_cmd, _result); \ 126 return _result; \ 127 } while(false) 128 129 inline bool os::numa_has_static_binding() { return true; } 130 inline bool os::numa_has_group_homing() { return false; } 131 132 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) { 133 size_t res; 134 RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res); 135 return res; 136 } 137 138 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) { 139 size_t res; 140 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res); 141 return res; 142 } 143 144 inline int os::close(int fd) { 145 return ::close(fd); 146 } 147 148 inline int os::socket_close(int fd) { 149 return ::close(fd); 150 } 151 152 inline int os::socket(int domain, int type, int protocol) { 153 return ::socket(domain, type, protocol); 154 } 155 156 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) { 157 RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags)); 158 } 159 160 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) { 161 RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags)); 162 } 163 164 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) { 165 return os::send(fd, buf, nBytes, flags); 166 } 167 168 inline int os::connect(int fd, struct sockaddr* him, socklen_t len) { 169 RESTARTABLE_RETURN_INT(::connect(fd, him, len)); 170 } 171 172 inline struct hostent* os::get_host_by_name(char* name) { 173 return ::gethostbyname(name); 174 } 175 176 inline bool os::supports_monotonic_clock() { 177 return Linux::_clock_gettime != NULL; 178 } 179 180 inline void os::exit(int num) { 181 ::exit(num); 182 } 183 184 #endif // OS_LINUX_VM_OS_LINUX_INLINE_HPP --- EOF ---