Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/fs/fifofs/
HDfifo_vnops.c140 struct pipe *fpipe; local
151 pipe_named_ctor(&fpipe, td);
153 fip->fi_pipe = fpipe;
154 fpipe->pipe_wgen = fip->fi_readers = fip->fi_writers = 0;
158 fpipe = fip->fi_pipe;
159 KASSERT(fpipe != NULL, ("fifo_open: pipe is NULL"));
166 PIPE_LOCK(fpipe);
171 fpipe->pipe_state &= ~PIPE_EOF;
175 fp->f_seqcount = fpipe->pipe_wgen - fip->fi_writers;
179 PIPE_UNLOCK(fpipe);
[all …]
/freebsd-11-stable/contrib/diff/src/
HDdiff3.c1193 FILE *fpipe; in read_diff() local
1220 fpipe = popen (command, "r"); in read_diff()
1221 if (!fpipe) in read_diff()
1224 fd = fileno (fpipe); in read_diff()
1258 wstatus = pclose (fpipe); in read_diff()