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)) {
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to