Here是令人困惑的页面。搜索“/ bin / ps”。
该行是:
ProcessHandle ph(launch("/bin/ps", args, &outPipe, 0, 0));
不应该是:
ProcessHandle ph(launch("/bin/ps", args, 0, &outPipe, 0));
?
最佳答案
是的,您的观察得到了证实-后三个args的顺序确实是stdin,stdout,stderr,因此文档中的outPipe被错误地传递为输入。我没有比您更多的想法了,这个文档错误怎么可能没有引起注意!-)