0
以下代碼是否會在調用abort()之前等待命令執行完成? 如果不是,並且父進程被中止,那麼子進程(bash shell)是否還活着並繼續執行該命令。寫模式管道同步嗎?
FILE *_popenShell = NULL;
_popenShell = popen("/bin/bash","w");
fwrite("some_command", 1, SOME_SIZE, _popenShell);
fflush(_popenShell);
pclose(_popenShell);
abort();