comparison src/os/bsd/vm/os_bsd.inline.hpp @ 14393:f4f6ae481e1a

Merge
author kvn
date Thu, 27 Jun 2013 13:04:51 -0700
parents e95fc50106cf
children 6c9332549827 ce8f6bb717c9
comparison
equal deleted inserted replaced
14392:b5c8a61d7fa0 14393: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 }