私はコンピューター システムを研究しておりfork()
、子プロセスの作成に使用するこの非常に単純な関数を作成しました。子プロセスの場合は 0 をfork()
返します。pid_t
しかし、getpid()
この子プロセス内で関数を呼び出すと、ゼロ以外の別の pid が返されます。以下のコードはnewPid
、オペレーティング システムではなく、プログラムのコンテキストでのみ意味がありますか? 親のpidに対して測定された相対値にすぎないのでしょうか?
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
void unixError(char* msg)
{
printf("%s: %s\n", msg, strerror(errno));
exit(0);
}
pid_t Fork()
{
pid_t pid;
if ((pid = fork()) < 0)
unixError("Fork error");
return pid;
}
int main(int argc, const char * argv[])
{
pid_t thisPid, parentPid, newPid;
int count = 0;
thisPid = getpid();
parentPid = getppid();
printf("thisPid = %d, parent pid = %d\n", thisPid, parentPid);
if ((newPid = Fork()) == 0) {
count++;
printf("I am the child. My pid is %d, my other pid is %d\n", getpid(), newPid);
exit(0);
}
printf("I am the parent. My pid is %d\n", thisPid);
return 0;
}
出力:
thisPid = 30050, parent pid = 30049
I am the parent. My pid is 30050
I am the child. My pid is 30052, my other pid is 0
最後に、子の pid が親の pid よりも 1 ではなく 2 高いのはなぜですか? メイン関数の pid とその親の差は 1 ですが、子を作成すると pid が 2 ずつ増えます。なぜでしょうか?