Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dsys_pipe.c814 rpipe->pipe_state |= PIPE_WANTR; in pipe_read()
989 if (wpipe->pipe_state & PIPE_WANTR) { in pipe_direct_write()
990 wpipe->pipe_state &= ~PIPE_WANTR; in pipe_direct_write()
1004 if (wpipe->pipe_state & PIPE_WANTR) { in pipe_direct_write()
1005 wpipe->pipe_state &= ~PIPE_WANTR; in pipe_direct_write()
1026 if (wpipe->pipe_state & PIPE_WANTR) { in pipe_direct_write()
1027 wpipe->pipe_state &= ~PIPE_WANTR; in pipe_direct_write()
1162 wpipe->pipe_state &= ~PIPE_WANTR; in pipe_write()
1253 wpipe->pipe_state &= ~PIPE_WANTR; in pipe_write()
1292 if (wpipe->pipe_state & PIPE_WANTR) { in pipe_write()
[all …]
/f-stack/freebsd/sys/
H A Dpipe.h89 #define PIPE_WANTR 0x008 /* Reader wants some characters. */ macro