Home
last modified time | relevance | path

Searched refs:pg_mtx (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/sys/sys/
HDproc.h104 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/
HDpxa_gpio.c51 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/
HDinit_main.c486 mtx_init(&pgrp0.pg_mtx, "process group", NULL, MTX_DEF | MTX_DUPOK); in proc0_init()
HDkern_proc.c476 mtx_init(&pgrp->pg_mtx, "process group", NULL, MTX_DEF | MTX_DUPOK);
640 mtx_destroy(&pgrp->pg_mtx);