zoukankan      html  css  js  c++  java
  • 多线程异步管理——信号

    #include <stdio.h>
    #include <pthread.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <signal.h>
    void *sigone_program(void *arg);
    void *sigtwo_program(void *arg);
    void report(int);
    
    int main(int argc,char *argv[])
    {
        int i;
        void *status;
        pthread_t thread_one,thread_two;
        if(pthread_create(&thread_one,NULL,sigone_program,NULL)!=0)
        {
            fprintf(stderr,"pthread_create failure
    ");
            exit(EXIT_FAILURE);
        }
        if(pthread_create(&thread_two,NULL,sigtwo_program,NULL)!=0)
        {
            fprintf(stderr,"pthread_create failure
    ");
            exit(EXIT_FAILURE);
        }
        sleep(1);
        printf("this is parent, send SIGUSR1, SIGUSR2 to thread %u
    ",thread_one);
        if(pthread_kill(thread_one,SIGUSR1)!=0)
        {
            perror("pthread_kill");
            exit(EXIT_FAILURE);
        }
        if(pthread_kill(thread_one,SIGUSR2)!=0)
        {
            perror("pthread_kill");
            exit(EXIT_FAILURE);
        }
        printf("this is parent, send SIGUSR1, SIGUSR2 to thread %u
    ",thread_two);
        if(pthread_kill(thread_two,SIGUSR1)!=0)
        {
            perror("pthread_kill");
            exit(EXIT_FAILURE);
        }
        if(pthread_kill(thread_two,SIGUSR2)!=0)
        {
            perror("pthread_kill");
            exit(EXIT_FAILURE);
        }
        sleep(1);
        if(pthread_kill(thread_one,SIGKILL)!=0)
        {
            perror("pthread_kill");
            exit(EXIT_FAILURE);
        }
        if(pthread_kill(thread_two,SIGKILL)!=0)
        {
            perror("pthread_kill");
            exit(EXIT_FAILURE);
        }
        pthread_join(thread_two,NULL);
        pthread_join(thread_one,NULL);
        return 0;
    }
    void *sigone_program(void *arg)
    {
        int i;
        __sigset_t set;
        signal(SIGUSR1,report);
        sigfillset(&set);
        sigdelset(&set,SIGUSR2);
        pthread_sigmask(SIG_SETMASK,&set,NULL);
        for(i=0;i<5;i++)
        {
            printf("this is set mask %u thread
    ",pthread_self());
            pause();
        }
    }
    
    void report(int sig)
    {
        printf("
    in signal, the sig=%d	, the thread id=%u
    ",sig,pthread_self());
    }
    
    void *sigtwo_program(void *arg)
    {
        int i;
        signal(SIGUSR2,report);
        for(i=0;i<5;i++)
        {
            printf("this is no set mask %u thread
    ",pthread_self());
            pause();
        }
    }

  • 相关阅读:
    如何修改Myeclipse的JSP模板
    解决----------“win10,不能打字了,已禁用IME”
    Scala学习之For、Function、Lazy(4)
    Scala学习之Tuple、Map、Array
    PHP Cookies
    PHP Cookies
    PHP 文件处理
    PHP include 和 require
    sqlserver2012 评估期已过问题处理
    PHP preg_match正则表达
  • 原文地址:https://www.cnblogs.com/lakeone/p/3792238.html
Copyright © 2011-2022 走看看