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条)

报告相同问题?

悬赏问题

  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler