Searched refs:to_cs (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/nvi/ex/
H A Dex_cscope.c379 int to_cs[2], from_cs[2]; local
383 * Cscope reads from to_cs[0] and writes to from_cs[1]; vi reads from
384 * from_cs[0] and writes to to_cs[1].
386 to_cs[0] = to_cs[1] = from_cs[0] = from_cs[1] = -1;
387 if (pipe(to_cs) < 0 || pipe(from_cs) < 0) {
395 err: if (to_cs[0] != -1)
396 (void)close(to_cs[0]);
397 if (to_cs[1] != -1)
398 (void)close(to_cs[
[all...]

Completed in 101 milliseconds