HomeSort by: relevance | last modified time | path
    Searched refs:PIPE_EOF (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/sys/
pipe.h 79 #define PIPE_EOF 0x010 /* Pipe is in EOF condition */
  /src/sys/kern/
sys_pipe.c 432 (atomic_load_relaxed(&rpipe->pipe_state) & PIPE_EOF) == 0)
491 if (rpipe->pipe_state & PIPE_EOF)
584 if (wpipe == NULL || (wpipe->pipe_state & PIPE_EOF) != 0) {
704 if (wpipe->pipe_state & PIPE_EOF) {
830 (rpipe->pipe_state & PIPE_EOF))
833 eof |= (rpipe->pipe_state & PIPE_EOF);
839 if ((wpipe->pipe_state & PIPE_EOF) || (
843 eof |= (wpipe->pipe_state & PIPE_EOF);
985 pipe->pipe_state |= PIPE_EOF;
998 ppipe->pipe_state |= PIPE_EOF;
    [all...]

Completed in 13 milliseconds