Import selfpipe code from skalibs 1.2.5
[andersk@mit.edu: Move code to new third/libstddjb directory]
This commit is contained in:
committed by
Keith Winstein
parent
9a3ab83783
commit
77f3a9073f
@@ -0,0 +1,15 @@
|
||||
/* ISC license. */
|
||||
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include "djbunix.h"
|
||||
|
||||
int fd_close (int fd)
|
||||
{
|
||||
register unsigned int i = 0 ;
|
||||
doit:
|
||||
if (!close(fd)) return 0 ;
|
||||
i++ ;
|
||||
if (errno == EINTR) goto doit ;
|
||||
return ((errno == EBADF) && (i > 1)) ? 0 : -1 ;
|
||||
}
|
||||
Reference in New Issue
Block a user