zoukankan      html  css  js  c++  java
  • Linux_ pthread 线程的取消

    线程的取消(即:线程的终止)

    某个线程,可以要求指定的线程终止!

    方法:
    1. 发送取消请求
    pthread_cancel
    原型:int pthread_cancel (pthread_t thread);

    注意:指定的线程接收到这个"请求"后,不一定马上就终止。
             取决于"被取消线程"的 “取消请求”的使能和类型。
    
    1. “取消请求”的使能
      pthread_setcancelstate
      原型:int pthread_setcancelstate (int state, int *oldstate);
      参数:state, PTHREAD_CANCEL_ENABLE 表示允许接收“取消请求” (默认状态)
      PTHREAD_CANCEL_DISABLE 表示禁止接收“取消请求”
      oldstate, 获取原来的取消使能状态。

    2. “取消请求”的类型
      pthread_setcanceltype
      原型:int pthread_setcanceltype (int type, int *oldtype);
      参数: type,
      1) PTHREAD_CANCEL_ASYNCHRONOUS
      接受到“取消请求”后,立即取消该线程

                 2)  PTHREAD_CANCEL_DEFERRED  (默认状态)
                        接受到“取消请求”后,直到“任意线程"中执行了以下函数之一就取消该线程。
                        pthread_join
                        pthread_cond_wait
                        pthread_cond_timeout
                        ptrhead_testcancel 
                        sem_wait  //等待信号量
                        sigwait     //等待信号
      
    3. 实例
      main4.c

    #include <pthread.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    pthread_t mythread1;
    pthread_t mythread2;
    
    void *  th1_handle(void *arg)
    {
        int ret;
        ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
        if (ret != 0) {
            perror("pthread_setcancelstate failed!
    ");
            exit(1);
        }
    
        //ret = pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
        ret = pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL); 
        if (ret != 0) {
            perror("pthread_setcanceltype failed!
    ");
            exit(1);
        }
    
        while(1) {
            printf("my thread...
    ");
            sleep(1);
        }
    
        pthread_exit(NULL);
    }
    
    void *  th2_handle(void *arg)
    {
        sleep(3);
    
        printf("send cancel request to th1...
    ");
        pthread_cancel(mythread1);
    
        pthread_exit(NULL);
    }
    
    
    int main(void)
    {
    
        int ret;
    
        ret = pthread_create(&mythread1, NULL, th1_handle, NULL);
        if (ret != 0) {
            printf("create thread failed!
    ");
        }
    
        ret = pthread_create(&mythread2, NULL, th2_handle, NULL);
        if (ret != 0) {
            printf("create thread failed!
    ");
        }
    
    
        pthread_join(mythread1, NULL);
        pthread_join(mythread2, NULL);
    
        //while(1);
        return 0;   
    }
    
  • 相关阅读:
    [Java]基础知识复习:例外的在继承中的机制
    2005年7月28日,终于结束了。
    从不知道到知道,从没有到有,是一个质的进步。
    正确的心态、积极的态度、坚定的信心、愉快的心情
    今天终于见到了她。
    textarea自增高(无滚动条)纯js实现
    带,号字符串转成表的函数操作
    MAK密钥集锦
    用户注册信息验证类库
    C#将文档(Word\ Excel\ PowerPoint\ Visio\ text\ XML\ RTF\ CSV )转成Pdf
  • 原文地址:https://www.cnblogs.com/Sico2Sico/p/5384199.html
Copyright © 2011-2022 走看看