summaryrefslogtreecommitdiffstats
path: root/include/unistd.h
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2009-06-15 20:38:55 +0000
committerjhb <jhb@FreeBSD.org>2009-06-15 20:38:55 +0000
commit447d980cd05483b9af4e91000999997f5ba018e7 (patch)
tree5e2b271455a043dbcc3a4a6aa9fd155c1966ebb4 /include/unistd.h
parentdf30f1c9f2ef0498e2aa537d4aec3aab759dc6c3 (diff)
downloadFreeBSD-src-447d980cd05483b9af4e91000999997f5ba018e7.zip
FreeBSD-src-447d980cd05483b9af4e91000999997f5ba018e7.tar.gz
Add a new 'void closefrom(int lowfd)' system call. When called, it closes
any open file descriptors >= 'lowfd'. It is largely identical to the same function on other operating systems such as Solaris, DFly, NetBSD, and OpenBSD. One difference from other *BSD is that this closefrom() does not fail with any errors. In practice, while the manpages for NetBSD and OpenBSD claim that they return EINTR, they ignore internal errors from close() and never return EINTR. DFly does return EINTR, but for the common use case (closing fd's prior to execve()), the caller really wants all fd's closed and returning EINTR just forces callers to call closefrom() in a loop until it stops failing. Note that this implementation of closefrom(2) does not make any effort to resolve userland races with open(2) in other threads. As such, it is not multithread safe. Submitted by: rwatson (initial version) Reviewed by: rwatson MFC after: 2 weeks
Diffstat (limited to 'include/unistd.h')
-rw-r--r--include/unistd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 4b567b8..aa027c2 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -326,6 +326,7 @@ unsigned int alarm(unsigned int);
int chdir(const char *);
int chown(const char *, uid_t, gid_t);
int close(int);
+void closefrom(int);
int dup(int);
int dup2(int, int);
int execl(const char *, const char *, ...);
OpenPOWER on IntegriCloud