我不知道我杀死子进程的当前方式是否正确。我希望当三个孩子的计时器(临时)命中零时它会杀死所有孩子,然后父母打印一条消息而不是退出。此外,我尝试使用sysinfo来获取子级2中的正常运行时间,但是sysinfo结构在运行程序的环境中没有正常运行时间。因此,如何使用exec函数来获取正常运行时间来自/ usr / bin / uptime。另外,不要告诉我将所有内容从主函数中分离出来,因为在我弄清楚如何完成功能之后我会这样做。
守则:
#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";
}
}
}
答案 0 :(得分:1)
另外,我尝试使用sysinfo来获取子2中的正常运行时间,但是sysinfo结构在运行程序的环境中没有正常运行时间。所以,我该如何使用exec函数从/ usr / bin / uptime获得正常运行时间
您只需在流程中设置alarm
,并在时间结束时收到SIGALRM
。
我希望当三个孩子的计时器(临时)命中零,它会杀死所有孩子,然后父母打印一条消息而不是退出。
您可能希望首先通过调用setpgrp
使父进程成为组长,以便您可以将组中任何进程的信号发送到同一组中的所有进程(父进程及其父进程)孩子们kill(0, SIGHUP)
。父进程必须为SIGHUP
安装一个信号处理程序,以便能够继续接收SIGHUP
或您可能希望用于此目的的任何其他信号。