さまざまなプロセスを実行して簡単なメッセージを出力するために、fork()を使用します。コードの結果は私を混乱させます。コードを見てください。
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <math.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <time.h>
int main(void)
{
fork();
fork();
fork();
fprintf(stderr,"hello world\n");
}
出力は次のとおりです。
mario@ubuntu:~/OS$ ./main
hello world
hello world
hello world
hello world
hello world
hello world
mario@ubuntu:~/OS$ hello world
hello world
mario@ubuntu:~/OS$
ターミナルの最初の行でプログラムを実行しますが、出力が期待したものではないことに注意してください。私を助けてください!前もって感謝します!fprintfをprintf( "......")で変更しても、同じことが起こります。
編集:なぜプリントがこのようになっているのか理解できません。ターミナルラインの前に6つ、その隣に1つ、その後に1つ...