zoukankan      html  css  js  c++  java
  • LInux多线程编程----线程属性pthread_attr_t

    1、每个POSIX线程有一个相连的属性对象来表示属性。线程属性对象的类型是pthread_attr_t,pthread_attr_t 在文件/usr/include/bits/pthreadtypes.h中定义。

    2、代码及运行结果:

    /*
     * pthreadAttr.c
     *
     *  Created on: Aug 17, 2013
     *      Author: root
     */
    #include <stdio.h>
    #include <errno.h>
    #include <pthread.h>
    #include <unistd.h>
    
    void * my_thread(void * arg){
        int retval = 0;
        pthread_attr_t attr;
        struct sched_param param;
        size_t stacksize;
        int detachstate;
        int scope;
        int inherit;
        int policy;
    
        if(pthread_attr_init(&attr) == 0){
            if(pthread_attr_getstacksize(&attr, &stacksize) == 0){
                printf("StackSize: %d
    ", stacksize);
            }
            if(pthread_attr_getdetachstate(&attr, &detachstate) == 0){
                if(detachstate == PTHREAD_CREATE_JOINABLE){
                    printf("DetachState:PTHREAD_CREATE_JOINABLE.
    ");
                }
                if(detachstate == PTHREAD_CREATE_DETACHED){
                    printf("DetachState:PTHREAD_CREATE_DETACHED.
    ");
                }
            }
            if(pthread_attr_getscope(&attr, &scope) == 0){
                if(scope == PTHREAD_SCOPE_PROCESS){
                    printf("Scope:PTHREAD_SCOPE_PROCESS
    ");
                }
                if(scope == PTHREAD_SCOPE_SYSTEM){
                    printf("Scope:PTHREAD_SCOPE_SYSTEM
    ");
                }
            }
            if(pthread_attr_getinheritsched(&attr, &inherit) == 0){
                if(inherit == PTHREAD_INHERIT_SCHED){
                    printf("InheritSched:PHREAD_INHERIT_SCHED
    ");
                }
                if(inherit == PTHREAD_EXPLICIT_SCHED){
                    printf("InheritSched:PHTREAD_EXPLICIT_SCHED
    ");
                }
            }
            if(pthread_attr_getschedpolicy(&attr, &policy) == 0){
                if(policy == SCHED_FIFO){
                    printf("schedPolicy:SCHED_FIFO
    ");
                }
                if(policy == SCHED_RR){
                    printf("SchedPolicy:SCHED_RR
    ");
                }
                else{
                    printf("SchedPolicy:SCHED_OTHER
    ");
                }
            }
            if(pthread_attr_getschedparam(&attr, &param) == 0){
                printf("SchedPriority:%d
    ", param.__sched_priority);
            }
            pthread_attr_destroy(&attr);
        }
    
        pthread_exit(&retval);
    }
    
    int main(){
        int count;
        pthread_t thread;
        int *retval;
        if(pthread_create(&thread, NULL, my_thread, (void*)NULL) != 0){
            printf("Count not create thread!
    ");
            return -1;
        }
        if(pthread_join(thread, (void **)(&retval)) != 0){
            printf("No thread to join!
    ");
            return -2;
        }
        return 0;
    }

      运行结果:

      

  • 相关阅读:
    Java程序员必知的8大排序
    java提高篇-----理解java的三大特性之封装
    树莓派学习笔记——GPIO功能学习
    SQL 服务没有及时响应启动或控制请求”的解决方法
    http://blog.csdn.net/u011001723/article/details/45621027
    error
    Spring @Conditional注解的使用
    Python [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed 解决方法
    python
    local class incompatible: stream classdesc serialVersionUID = -2897844985684768944, local class serialVersionUID = 7350468743759137184
  • 原文地址:https://www.cnblogs.com/wangle1001986/p/3265316.html
Copyright © 2011-2022 走看看