我不知道我当前杀死子进程的方式是否正确。我希望当孩子三的计时器(temp)命中为零时它会杀死所有孩子,然后父母会打印一条消息而不是退出。另外,我尝试使用 sysinfo 来获取子 2 的正常运行时间,但是 sysinfo 结构在我运行程序的环境中没有正常运行时间。那么,如何使用 exec 函数从 / 获取正常运行时间usr/bin/正常运行时间。另外,不要告诉我将所有内容从主函数中拆分出来,因为我会在弄清楚如何完成该功能之后再这样做。
编码:
#include <string>
#include <ctime>
#include <iostream>
#include <sys/sysinfo.h>
#include <cstdlib>
#include <unistd.h>
#include <sched.h>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <errno.h>
using namespace std;
pid_t parent_pid;
void sigquit_handler (int sig) {
assert(sig == SIGQUIT);
pid_t self = getpid();
if (parent_pid != self) _exit(0);
}
int main (string input) {
if (input.empty()) {
input = "10";
}
signal(SIGQUIT, sigquit_handler);
parent_pid = getpid();
int number = atoi(input.c_str());
pid_t pid;
int i;
FILE* fp;
double uptime;
for(i = 0; i < 3; i++) {
pid = fork();
if(pid < 0) {
printf("Error");
exit(1);
}
else if (pid == 0) {
if (i == 0) { //Child 1
sleep(1);
time_t t = time(0); // get time now
struct tm * now = localtime( & t );
cout << (now->tm_year + 1900) << '-'
<< (now->tm_mon + 1) << '-'
<< now->tm_mday
<< endl;
}
else if (i == 1) { //Child 2
sleep(5);
struct sysinfo info;
cout << info.uptime << endl;
}
else { //Child 3
int temp = number;
int minute = temp / 60;
int second = temp - (minute * 60);
sleep(1);
cout << minute << ":" << second << endl;
temp--;
if (temp == 0) {
kill(-parent_pid, SIGQUIT);
}
}
}
else {
cout << "Program is Complete";
}
}
}