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

Brooks Davis brooks at FreeBSD.org
Fri Nov 9 00:46:12 UTC 2018


Author: brooks
Date: Fri Nov  9 00:46:10 2018
New Revision: 340274
URL: https://svnweb.freebsd.org/changeset/base/340274

Log:
  Make freebsd32_umtx_op follow the freebsd32_foo convention.
  
  Sponsored by:	DARPA, AFRL

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

Modified: head/sys/compat/freebsd32/syscalls.master
==============================================================================
--- head/sys/compat/freebsd32/syscalls.master	Fri Nov  9 00:22:45 2018	(r340273)
+++ head/sys/compat/freebsd32/syscalls.master	Fri Nov  9 00:46:10 2018	(r340274)
@@ -821,7 +821,7 @@
 				    struct auditinfo_addr *auditinfo_addr, \
 				    u_int length); }
 453	AUE_AUDITCTL	NOPROTO	{ int auditctl(const char *path); }
-454	AUE_NULL	STD	{ int freebsd32_umtx_op(void *obj, int op,\
+454	AUE_NULL	STD	{ int freebsd32__umtx_op(void *obj, int op,\
 				    u_long val, void *uaddr, \
 				    void *uaddr2); }
 455	AUE_THR_NEW	STD	{ int freebsd32_thr_new(	\

Modified: head/sys/kern/kern_umtx.c
==============================================================================
--- head/sys/kern/kern_umtx.c	Fri Nov  9 00:22:45 2018	(r340273)
+++ head/sys/kern/kern_umtx.c	Fri Nov  9 00:46:10 2018	(r340274)
@@ -4351,7 +4351,7 @@ static const _umtx_op_func op_table_compat32[] = {
 };
 
 int
-freebsd32_umtx_op(struct thread *td, struct freebsd32_umtx_op_args *uap)
+freebsd32__umtx_op(struct thread *td, struct freebsd32__umtx_op_args *uap)
 {
 
 	if ((unsigned)uap->op < nitems(op_table_compat32)) {


More information about the svn-src-all mailing list