Home
last modified time | relevance | path

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

/xnu-10063.101.15/bsd/kern/
H A Dsys_pipe.c857 rpipe->pipe_state |= PIPE_WANTR; in pipe_read()
988 wpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTR); in pipe_write()
1112 if (wpipe->pipe_state & PIPE_WANTR) { in pipe_write()
1113 wpipe->pipe_state &= ~PIPE_WANTR; in pipe_write()
1154 wpipe->pipe_state &= ~(PIPE_WANT | PIPE_WANTR); in pipe_write()
1162 if (wpipe->pipe_state & PIPE_WANTR) { in pipe_write()
1163 wpipe->pipe_state &= ~PIPE_WANTR; 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-10063.101.15/bsd/sys/
H A Dpipe.h132 #define PIPE_WANTR 0x008 /* Reader wants some characters. */ macro