• Linux下类似windows下_beginthread和_endthread 的多线程开发


    在 windows下头文件中包含 #include<process.h>

    就可以使用_beginthread进行线程创建。个人感觉挺方便的。

    在linux下类似于_beginthread 和 _endthread 的 是pthread_createpthread_exit 

    linux下包含头文件 #include<pthread.h>

    =================================

    pthread_create 启动线程属性讲解:

    http://blog.csdn.net/hudashi/article/details/7709413

    ===================================

    下面是转载的一个例子:

    原文地址:http://yecheng110.blog.hexun.com/13030352_d.html

    #include <pthread.h>
    
    int pthread_create(pthread_t *restrict tidp,
                       const pthread_attr_t *restrict attr,
                       void *(*start_rtn)(void), 
                       void *restrict arg);
    
     
    
    Returns: 0 if OK, error number on failure
     

    C99 中新增加了 restrict 修饰的指针: 由 restrict 修饰的指针是最初唯一对指针所指向的对象进行存取的方法,仅当第二个指针基于第一个时,才能对对象进行存取。对对象的存取都限定于基于由 restrict 修饰的指针表达式中。 由 restrict 修饰的指针主要用于函数形参,或指向由 malloc() 分配的内存空间。restrict 数据类型不改变程序的语义。 编译器能通过作出 restrict 修饰的指针是存取对象的唯一方法的假设,更好地优化某些类型的例程。

    第一个参数为指向线程标识符的指针。
    第二个参数用来设置线程属性。
    第三个参数是线程运行函数的起始地址。
    最后一个参数是运行函数的参数。

    下面这个程序中,我们的函数thr_fn不需要参数,所以最后一个参数设为空指针。第二个参数我们也设为空指针,这样将生成默认属性的线程。当创建线程成功时,函数返回0,若不为0则说明创建线程失败,常见的错误返回代码为EAGAIN和EINVAL。前者表示系统限制创建新的线程,例如线程数目过多了;后者表示第二个参数代表的线程属性值非法。创建线程成功后,新创建的线程则运行参数三和参数四确定的函数,原来的线程则继续运行下一行代码。

    #include<stdio.h>
    #include<pthread.h>
    #include<string.h>
    #include<sys/types.h>
    #include<unistd.h>
    
    pthread_t ntid;
    
    void printids(const char *s){
    pid_t pid;
      pthread_t tid;
    
      pid = getpid();
      tid = pthread_self();
      printf("%s pid %u tid %u (0x%x)
    ",s,(unsigned int)pid,(unsigned int)tid,(unsigned 
     int)tid);
    }
    
    void *thr_fn(void *arg){
      printids("new thread:");
      return ((void *)0);
    }
    
    int main(){
      int err;
    
      err = pthread_create(&ntid,NULL,thr_fn,NULL);
      if(err != 0){
       printf("can't create thread: %s
    ",strerror(err));
       return 1;
      }
    
      printids("main thread:");
      sleep(1);
      return 0;
    }

    把APUE2上的一个程序修改一下,然后编译。
    结果报错:
    pthread.c:(.text+0x85):对‘pthread_create’未定义的引用


    由于pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,所以在使用pthread_create创建线程时,在编译中要加-lpthread参数:
    gcc -o pthread -lpthread pthread.c

  • 相关阅读:
    Problem 1014 xxx游戏 暴力+拓扑排序
    Codeforces Beta Round #10 D. LCIS
    HDU 1423 Greatest Common Increasing Subsequence LCIS
    Codeforces Round #349 (Div. 1) A. Reberland Linguistics dp
    BZOJ 3875: [Ahoi2014]骑士游戏 dp+spfa
    Codeforces Round #360 (Div. 2) E. The Values You Can Make 01背包
    Codeforces Round #360 (Div. 2) D. Remainders Game 中国剩余定理
    UVALive 4872 Underground Cables 最小生成树
    POJ 1182 食物链 并查集
    山东省第六届ACM省赛
  • 原文地址:https://www.cnblogs.com/wainiwann/p/3147955.html
Copyright © 2020-2023  润新知