freebsd-dev/tools/regression/file
John Baldwin c4f16b69e1 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
2009-06-15 20:38:55 +00:00
..
closefrom Add a new 'void closefrom(int lowfd)' system call. When called, it closes 2009-06-15 20:38:55 +00:00
dup Introduce a new F_DUP2FD command to fcntl(2), for compatibility with 2008-03-08 22:02:21 +00:00
flock Add a regression test for multiple threads of the same process acquiring the same fcntl lock. 2009-05-28 02:39:07 +00:00
ftruncate o style.Makefile(5): WARNS= -> WARNS?=. 2006-07-09 11:51:14 +00:00
newfileops_on_fork Add a regresion test to determine whether or not a file descriptor is 2009-02-11 13:44:27 +00:00