Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dpipe.h87 #define PIPE_WANT 0x020 /* Pipe is wanted to be run-down. */ macro
/freebsd/sys/kern/
H A Dsys_pipe.c877 if ((rpipe->pipe_busy == 0) && (rpipe->pipe_state & PIPE_WANT)) { in pipe_read()
878 rpipe->pipe_state &= ~(PIPE_WANT|PIPE_WANTW); in pipe_read()
1323 if ((wpipe->pipe_busy == 0) && (wpipe->pipe_state & PIPE_WANT)) { in pipe_write()
1324 wpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTR); in pipe_write()
1686 cpipe->pipe_state |= PIPE_WANT; in pipeclose()