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

changeset 5264
e95fc50106cf
parent 5237
f2110083203d
child 6876
710a3c8b516e
child 6911
ce8f6bb717c9
     1.1 --- a/src/os/bsd/vm/os_bsd.inline.hpp	Thu Jun 13 11:16:38 2013 -0700
     1.2 +++ b/src/os/bsd/vm/os_bsd.inline.hpp	Fri Jun 14 07:46:22 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