Use refcount_init in sigacts_alloc.

This change is a no-op, but fixes up an inconsistency introduced with
r268634.

MFC after:	3 days
This commit is contained in:
Mateusz Guzik 2014-08-24 09:24:37 +00:00
parent 9de6b2c587
commit ce8daaadbd

View File

@ -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);
}