Home
last modified time | relevance | path

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

/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp286 int inPipe[2], outPipe[2], errPipe[2]; in _PipeCommand() local
293 if (pipe(errPipe) < 0) in _PipeCommand()
303 dup2(errPipe[1], STDERR_FILENO); in _PipeCommand()
304 close(errPipe[1]); in _PipeCommand()
309 err = errPipe[0]; // Read from err, taken from cmd's stderr in _PipeCommand()