1
システムコールにプロセスIDが渡された場合、すべての子プロセスIDを返す必要があります。これはCで書かれていなければなりません。mprocを使って子プロセスの親プロセスを取得し、特定のインデックスからすべてのプロセスをリストアップしていますが、それをそこから飛躍させることはできません。親プロセスのid(minix)から子プロセスIDを取得するCプログラム
マイコード:
int do_getchildpids() {
// get pid from parameter
int ppid = m_in.m1_i1;
// Get the child pid of this process
pid_t cpid;
if (cpid == fork()) {
printf("Child pid for ppid %d is %d\n", ppid, getpid());
}
// ** Other attempt at this problem below **
// if mp_parent == ppid then print pid
int idx = 0;
int cpid = mproc[idx].mp_pid;
while (mproc[idx].mp_pid) {
idx++;
}
printf("Searching for children of %d...\n", ppid);
if (pid == 0) {
// for loop that gets the ppid, checks against given ppid
// prints out pid if true
if (cpid) {
// loop through proc table checking if ppid is equal to parameter passed
if (ppid == mproc[mproc[i].mp_parent].mp_pid)
printf("Child pid is %d.\n", getpid());
}
printf("Child pid is: %d.\n", getpid());
} else {
printf("Error, child pid was not set or is -1\n");
}
return 0;
}
私たちが助けたいコードをコメントアウトしないでください。シンタックスハイライトは読みにくいです。 – Barmar
@Barmar apologies - edited。 – Jimmy