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

Brooks Davis brooks at FreeBSD.org
Wed May 30 22:23:00 UTC 2018


Author: brooks
Date: Wed May 30 22:22:58 2018
New Revision: 334405
URL: https://svnweb.freebsd.org/changeset/base/334405

Log:
  Remove alternative names that are identical to the default.
  
  Verified by make sysent producing no changes.

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	Wed May 30 22:03:02 2018	(r334404)
+++ head/sys/compat/freebsd32/syscalls.master	Wed May 30 22:22:58 2018	(r334405)
@@ -156,8 +156,7 @@
 				    size_t count); }
 59	AUE_EXECVE	STD	{ int freebsd32_execve(char *fname, \
 				    uint32_t *argv, uint32_t *envv); }
-60	AUE_UMASK	NOPROTO	{ int umask(int newmask); } umask \
-				    umask_args int
+60	AUE_UMASK	NOPROTO	{ int umask(int newmask); }
 61	AUE_CHROOT	NOPROTO	{ int chroot(char *path); }
 62	AUE_FSTAT	COMPAT	{ int freebsd32_fstat(int fd, \
 				    struct ostat32 *ub); }

Modified: head/sys/kern/syscalls.master
==============================================================================
--- head/sys/kern/syscalls.master	Wed May 30 22:03:02 2018	(r334404)
+++ head/sys/kern/syscalls.master	Wed May 30 22:22:58 2018	(r334405)
@@ -210,8 +210,7 @@
 				    _In_z_ char *fname, \
 				    _In_z_ char **argv, \
 				    _In_z_ char **envv); }
-60	AUE_UMASK	STD	{ int umask(int newmask); } umask umask_args \
-				    int
+60	AUE_UMASK	STD	{ int umask(int newmask); }
 61	AUE_CHROOT	STD	{ int chroot(_In_z_ char *path); }
 62	AUE_FSTAT	COMPAT	{ int fstat(int fd, _Out_ struct ostat *sb); }
 63	AUE_NULL	COMPAT	{ int getkerninfo(int op, \


More information about the svn-src-head mailing list