Author: mjg
Date: Sun Aug 24 09:24:37 2014
New Revision: 270447
URL: http://svnweb.freebsd.org/changeset/base/270447

Log:
  Use refcount_init in sigacts_alloc.
  
  This change is a no-op, but fixes up an inconsistency introduced with
  r268634.
  
  MFC after:    3 days

Modified:
  head/sys/kern/kern_sig.c

Modified: head/sys/kern/kern_sig.c
==============================================================================
--- head/sys/kern/kern_sig.c    Sun Aug 24 09:22:03 2014        (r270446)
+++ head/sys/kern/kern_sig.c    Sun Aug 24 09:24:37 2014        (r270447)
@@ -3429,7 +3429,7 @@ sigacts_alloc(void)
        struct sigacts *ps;
 
        ps = malloc(sizeof(struct sigacts), M_SUBPROC, M_WAITOK | M_ZERO);
-       ps->ps_refcnt = 1;
+       refcount_init(&ps->ps_refcnt, 1);
        mtx_init(&ps->ps_mtx, "sigacts", NULL, MTX_DEF);
        return (ps);
 }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to