我正在尝试重定向子进程的标准输入和标准输出。想用缓冲区中的二进制数据填充进程的标准输入并读取它,(但现在我只需要知道有多少写入标准输出)
namespace bp = boost::process;
bp::opstream in;
bp::ipstream out;
bp::child c(Cmd.c_str(), bp::std_out > out, bp::std_in < in);
in.write((char*)buffer,bufferSize);
integer_type totalRead = 0;
char a[10240];
while (out.read(a,10240)) totalRead += out.gcount();
c.terminate();
写看起来是成功的,但程序卡在读循环中,进程(子进程和父进程)在此期间保持空闲