Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dpipe.h91 #define PIPE_WANT 0x020 /* Pipe is wanted to be run-down. */ macro
/f-stack/freebsd/kern/
H A Dsys_pipe.c838 if ((rpipe->pipe_busy == 0) && (rpipe->pipe_state & PIPE_WANT)) { in pipe_read()
839 rpipe->pipe_state &= ~(PIPE_WANT|PIPE_WANTW); in pipe_read()
1284 if ((wpipe->pipe_busy == 0) && (wpipe->pipe_state & PIPE_WANT)) { in pipe_write()
1285 wpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTR); in pipe_write()
1640 cpipe->pipe_state |= PIPE_WANT; in pipeclose()