Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Dsys_pipe.c831 if (rpipe->pipe_state & PIPE_WANTW) { in pipe_read()
832 rpipe->pipe_state &= ~PIPE_WANTW; in pipe_read()
880 rpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTW); in pipe_read()
886 if (rpipe->pipe_state & PIPE_WANTW) { in pipe_read()
887 rpipe->pipe_state &= ~PIPE_WANTW; in pipe_read()
1142 wpipe->pipe_state |= PIPE_WANTW; in pipe_write()
1773 cpipe->pipe_state &= ~(PIPE_WANTR | PIPE_WANTW); in pipe_drain()
1781 ppipe->pipe_state &= ~(PIPE_WANTR | PIPE_WANTW); in pipe_drain()
/xnu-8019.80.24/bsd/sys/
H A Dpipe.h133 #define PIPE_WANTW 0x010 /* Writer wants space to put characters. */ macro