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

/macosx-10.10.1/vim-55/src/
H A Dif_cscope.c834 int to_cs[2], from_cs[2]; local
860 * Cscope reads from to_cs[0] and writes to from_cs[1]; vi reads from
861 * from_cs[0] and writes to to_cs[1].
863 to_cs[0] = to_cs[1] = from_cs[0] = from_cs[1] = -1;
864 if (pipe(to_cs) < 0 || pipe(from_cs) < 0)
868 if (to_cs[0] != -1)
869 (void)close(to_cs[0]);
870 if (to_cs[1] != -1)
871 (void)close(to_cs[
[all...]

Completed in 63 milliseconds