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

changeset 6443
f4f6ae481e1a
parent 5264
e95fc50106cf
child 6876
710a3c8b516e
child 6911
ce8f6bb717c9
     1.1 --- a/src/os/bsd/vm/os_bsd.inline.hpp	Fri Jun 21 15:56:24 2013 -0700
     1.2 +++ b/src/os/bsd/vm/os_bsd.inline.hpp	Thu Jun 27 13:04:51 2013 -0700
     1.3 @@ -178,11 +178,11 @@
     1.4  }
     1.5  
     1.6  inline int os::close(int fd) {
     1.7 -  RESTARTABLE_RETURN_INT(::close(fd));
     1.8 +  return ::close(fd);
     1.9  }
    1.10  
    1.11  inline int os::socket_close(int fd) {
    1.12 -  RESTARTABLE_RETURN_INT(::close(fd));
    1.13 +  return ::close(fd);
    1.14  }
    1.15  
    1.16  inline int os::socket(int domain, int type, int protocol) {

mercurial