summaryrefslogtreecommitdiffstats
path: root/sys/compat
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 /sys/compat
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 'sys/compat')
-rw-r--r--sys/compat/freebsd32/syscalls.master1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master
index 7da270b..f2a1700 100644
--- a/sys/compat/freebsd32/syscalls.master
+++ b/sys/compat/freebsd32/syscalls.master
@@ -889,3 +889,4 @@
507 AUE_NULL STD { int freebsd32_jail_set(struct iovec32 *iovp, \
unsigned int iovcnt, int flags); }
508 AUE_NULL NOPROTO { int jail_remove(int jid); }
+509 AUE_CLOSEFROM NOPROTO { int closefrom(int lowfd); }
OpenPOWER on IntegriCloud