src/os/bsd/vm/os_bsd.inline.hpp

changeset 6443
f4f6ae481e1a
parent 5264
e95fc50106cf
child 6876
710a3c8b516e
child 6911
ce8f6bb717c9
equal deleted inserted replaced
6442:b5c8a61d7fa0 6443:f4f6ae481e1a
176 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res); 176 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
177 return res; 177 return res;
178 } 178 }
179 179
180 inline int os::close(int fd) { 180 inline int os::close(int fd) {
181 RESTARTABLE_RETURN_INT(::close(fd)); 181 return ::close(fd);
182 } 182 }
183 183
184 inline int os::socket_close(int fd) { 184 inline int os::socket_close(int fd) {
185 RESTARTABLE_RETURN_INT(::close(fd)); 185 return ::close(fd);
186 } 186 }
187 187
188 inline int os::socket(int domain, int type, int protocol) { 188 inline int os::socket(int domain, int type, int protocol) {
189 return ::socket(domain, type, protocol); 189 return ::socket(domain, type, protocol);
190 } 190 }

mercurial