プログラムが実行されたときにfork()
標準ストリームを設定するにはSTDOUT
?STDIN
STDERR
答え1
Stdin、stdout、stderr は親プロセスから継承されます。必要に応じて、子プロセスによって新しいファイルを指すように変更されます。
fork(2)
マニュアルページから:
* The child inherits copies of the parent's set of open file descrip‐
tors. Each file descriptor in the child refers to the same open
file description (see open(2)) as the corresponding file descriptor
in the parent.
答え2
Kyle Jonesが述べたように、親プロセスで伝播されます。頼むならどのように希望の子に設定するにはfreopen()
。