Searched refs:pg_mtx (Results 1 – 4 of 4) sorted by relevance
| /freebsd-11-stable/sys/sys/ |
| HD | proc.h | 104 struct mtx pg_mtx; /* Mutex to protect members */ member 850 #define PGRP_LOCK(pg) mtx_lock(&(pg)->pg_mtx) 851 #define PGRP_UNLOCK(pg) mtx_unlock(&(pg)->pg_mtx) 852 #define PGRP_LOCKED(pg) mtx_owned(&(pg)->pg_mtx) 853 #define PGRP_LOCK_ASSERT(pg, type) mtx_assert(&(pg)->pg_mtx, (type))
|
| /freebsd-11-stable/sys/arm/xscale/pxa/ |
| HD | pxa_gpio.c | 51 struct mtx pg_mtx; member 114 mtx_init(&sc->pg_mtx, "GPIO mutex", NULL, MTX_SPIN); in pxa_gpio_attach()
|
| /freebsd-11-stable/sys/kern/ |
| HD | init_main.c | 486 mtx_init(&pgrp0.pg_mtx, "process group", NULL, MTX_DEF | MTX_DUPOK); in proc0_init()
|
| HD | kern_proc.c | 476 mtx_init(&pgrp->pg_mtx, "process group", NULL, MTX_DEF | MTX_DUPOK); 640 mtx_destroy(&pgrp->pg_mtx);
|