Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/kern/
Dsubr_bus.c403 } devsoftc; variable
412 mtx_init(&devsoftc.mtx, "dev mtx", "devd", MTX_DEF); in devinit()
413 cv_init(&devsoftc.cv, "dev cv"); in devinit()
414 TAILQ_INIT(&devsoftc.devq); in devinit()
420 if (devsoftc.inuse) in devopen()
423 devsoftc.inuse = 1; in devopen()
424 devsoftc.nonblock = 0; in devopen()
425 devsoftc.async_proc = NULL; in devopen()
432 devsoftc.inuse = 0; in devclose()
433 mtx_lock(&devsoftc.mtx); in devclose()
[all …]