coder_jacky 2015-04-25 16:29 采纳率: 100%
浏览 1771
已采纳

一个小的Linux程序,一运行电脑就自动关机。(要求两个进程轮流打印1.2.3.4....)

#include
#include
#include
#include
#include

void f_sigact(int num)
{
static int f = 2;
// sleep(1);
printf("I am father.This is %d\n",f);
f += 2;
}

void c_sigact(int num)
{
int static c = 1;
// sleep(1);
printf("I am child.This is %d\n",c);
c+=2;
}

int main()
{
pid_t fpid,cpid;
struct sigaction fact,cact;
fact.sa_handler = f_sigact;
cact.sa_handler = c_sigact;
// sigemptyset(&fact.sa_mask);
// sigaddset(&fact.sa_mask,SIGUSR2);
fact.sa_flags = 0;
// sigaction(SIGUSR1,&fact,NULL);
// sigemptyset(&cact.sa_mask);
sigaddset(&cact.sa_mask,SIGUSR1);

cact.sa_flags = 0;
sigaction(SIGUSR2,&cact,NULL);

fpid = fork();
if(fpid < 0){
    perror("fork");
    exit(1);
}
int m = 5;
while(1){
    if(fpid > 0){
        kill(fpid,SIGUSR2);
//      sleep(1);
        }
    else{
        cpid = getppid();
        kill(cpid,SIGUSR1);
//      sleep(1);
    }
    sleep(3);
}

return 0;

}

  • 写回答

2条回答 默认 最新

  • 知常曰明 2015-04-26 00:36
    关注
    #include <unistd.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <signal.h>
    void f_sigact(int num)
    {
            static int f = 2;
            // sleep(1);
            printf("I am father.This is %d\n",f);
            f += 2;
    }
    void c_sigact(int num)
    {
            int static c = 1;
            // sleep(1);
            printf("I am child .This is %d\n",c);
            c+=2;
    }
    int main()
    {
            pid_t fpid,cpid;
            struct sigaction fact,cact;
            struct sigaction ofact,ocact;
            fact.sa_handler = f_sigact;
            cact.sa_handler = c_sigact;
            // sigemptyset(&fact.sa_mask);
            // sigaddset(&fact.sa_mask,SIGUSR2);
            fact.sa_flags = 0;
            cact.sa_flags = 0;
            // sigaction(SIGUSR1,&fact,NULL);
            // sigemptyset(&cact.sa_mask);
            sigaddset(&cact.sa_mask,SIGUSR1);
            sigaddset(&fact.sa_mask,SIGUSR2);
            //sigaction(SIGUSR2,&cact,NULL);
            cpid = fork();
            if(cpid < 0){
                    perror("fork");
                            exit(1);
            }
            else if (cpid==0){
                    //it's a child
                    sigaction(SIGUSR1,&cact,&ocact);
            }
            else{
                    //it;s the parent
                    sigaction(SIGUSR2,&fact,&ofact);
            }
    
            int m = 5;
            sleep(1);
            while(1){
                    if (cpid>0)
                    {
                            fpid = getpid();
                            kill(cpid,SIGUSR1);
                            sleep(1);
                            kill(fpid,SIGUSR2);
                            sleep(1);
                    }
                            sleep(3);
            }
    
            return 0;
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?