Home
last modified time | relevance | path

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

/mirbsd/src/sys/kern/
Dsys_pipe.c214 cpipe->pipe_busy = 0;
290 ++rpipe->pipe_busy;
371 --rpipe->pipe_busy;
376 if ((rpipe->pipe_busy == 0) && (rpipe->pipe_state & PIPE_WANT)) {
416 ++wpipe->pipe_busy;
439 --wpipe->pipe_busy;
440 if ((wpipe->pipe_busy == 0) &&
583 --wpipe->pipe_busy;
585 if ((wpipe->pipe_busy == 0) && (wpipe->pipe_state & PIPE_WANT)) {
769 while (cpipe->pipe_busy) {
/mirbsd/src/sys/sys/
Dpipe.h83 int pipe_busy; /* busy flag, mostly to handle rundown sanely */ member