svn commit: r360236 - in head/sys: compat/freebsd32 kern

Kyle Evans kevans at FreeBSD.org
Fri Apr 24 01:30:01 UTC 2020


Author: kevans
Date: Fri Apr 24 01:30:00 2020
New Revision: 360236
URL: https://svnweb.freebsd.org/changeset/base/360236

Log:
  close_range(2): use newly assigned AUE_CLOSERANGE

Modified:
  head/sys/compat/freebsd32/syscalls.master
  head/sys/kern/syscalls.master

Modified: head/sys/compat/freebsd32/syscalls.master
==============================================================================
--- head/sys/compat/freebsd32/syscalls.master	Fri Apr 24 01:27:25 2020	(r360235)
+++ head/sys/compat/freebsd32/syscalls.master	Fri Apr 24 01:30:00 2020	(r360236)
@@ -1162,7 +1162,7 @@
 573	AUE_NULL	NOPROTO	{ int sigfastblock(int cmd, uint32_t *ptr); }
 574	AUE_REALPATHAT	NOPROTO { int __realpathat(int fd, const char *path, \
 				    char *buf, size_t size, int flags); }
-575	AUE_NULL	NOPROTO	{ int close_range(u_int lowfd, u_int highfd, \
+575	AUE_CLOSERANGE	NOPROTO	{ int close_range(u_int lowfd, u_int highfd, \
 				    int flags); }
 
 ; vim: syntax=off

Modified: head/sys/kern/syscalls.master
==============================================================================
--- head/sys/kern/syscalls.master	Fri Apr 24 01:27:25 2020	(r360235)
+++ head/sys/kern/syscalls.master	Fri Apr 24 01:30:00 2020	(r360236)
@@ -3227,7 +3227,7 @@
 		    int flags
 		);
 	}
-575	AUE_NULL	STD {
+575	AUE_CLOSERANGE	STD {
 		int close_range(
 		    u_int lowfd,
 		    u_int highfd,


More information about the svn-src-head mailing list