From 1ab681a4bc3f87b09150fa23f9dd4e2c5f5c33cc Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Tue, 17 Nov 2020 22:40:07 -0600 Subject: sys/freebsd: add freebsd12_closefrom and close_range close_range is generally equivalent to the Linux syscall by the same name, except that FreeBSD does not currently have any valid flags defined for it. Prior to FreeBSD 13, closefrom was redefined in terms of close_range in libc and closefrom was pushed to compat12. closefrom(fd) was generally equivalent to `close_range(fd, ~0U, 0)`. --- CONTRIBUTORS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CONTRIBUTORS') diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 607849f34..60f8d8a42 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -80,4 +80,5 @@ VMware Suraj K Suresh Palash Oswal Tiger Gao -Congyu Liu \ No newline at end of file +Congyu Liu +Kyle Evans -- cgit mrf-deployment