Linux多线程函数解析

Linux多线程函数用得比较多的是下面的3个:pthread_create()pthread_exit()      pthread_join();

它们都是在头文件之中。编译时需要加静态库-lpthread

函数的说明如下:
(一) pthread_create是UNIX环境创建线程函数

     int pthread_create(

         pthread_t *restrict tidp,

         const pthread_attr_t *restrict_attr,
         void*(*start_rtn)(void*),

         void *restrict arg

     );

    返回值:若成功则返回0,否则返回出错编号。
    参数:
      第一个参数为指向线程标识符的指针。
      第二个参数用来设置线程属性。
      第三个参数是线程运行函数的起始地址。
      最后一个参数是运行函数的参数。

    另外,在编译时注意加上-lpthread参数,以调用静态链接库。因为pthread并非Linux系统的默认库。

    该函数返回成功时,由tidp指向的内存单元被设置为新创建线程的线程ID。attr参数用于制定各种不同的线程属性。新创建的线程从start_rtn函数的地址开始运行,该函数只有一个万能指针参数arg,如果需要向start_rtn函数传递的参数不止一个,那么需要把这些参数放到一个结构中,然后把这个结构的地址作为arg的参数传入。
  由 restrict 修饰的指针是最初唯一对指针所指向的对象进行存取的方法,仅当第二个指针基于第一个时,才能对对象进行存取。对对象的存取都限定于基于由 restrict 修饰的指针表达式中。 由 restrict 修饰的指针主要用于函数形参,或指向由 malloc() 分配的内存空间。restrict 数据类型不改变程序的语义。 编译器能通过作出 restrict 修饰的指针是存取对象的唯一方法的假设,更好地优化某些类型的例程。


(二) pthread_exit(void* retval);
     线程通过调用pthread_exit函数终止自身执行,就如同进程在结束时调用exit函数一样。这个函数的作用是,终止调用它的线程并返回一个指向某个对象的指针。该指针可以通过pthread_join(pthread_t tpid, void **value_ptr)中的第二个参数value_ptr获取到。

(三) 函数pthread_join用来等待一个线程的结束。函数原型为:
   extern int pthread_join __P (pthread_t __th, void **__thread_return);
     第一个参数为被等待的线程标识符,第二个参数为一个用户定义的指针,它可以用来存储被等待线程退出时的返回值。这个函数是一个线程阻塞的函数,调用它的函数将一直等待到被等待的线程结束为止,当函数返回时,被等待线程的资源被收回。如果执行成功,将返回0,如果失败则返回一个错误号。
     所有线程都有一个线程号,也就是Thread ID。其类型为pthread_t。通过调用pthread_self()函数可以获得自身的线程号。

     下面是一个简单的例子,子线程thread_fun会打出5次“this is thread_fun print!”然后调用pthread_exit退出,并返回一个指向字符串“this is thread return value!”的指针。在主函数里面调用pthread_join等待thread_fun线程结束,然后读取子线程的返回值到value中,再打印出来。

输出结果是:

pthread_create ok!
this is thread_fun print!
this is thread_fun print!
this is thread_fun print!
this is thread_fun print!
this is thread_fun print!
pthread exit value: this is thread return value!


源码如下:

01.#include
02.#include
03.#include
04.#include
05.#include
06.#include
07.//////////////////////////////////////////////////////
08.void *thread_fun(void *arg) {
09.        int i=0;
10.        char *value_ptr = "this is thread return value!\n";
11.        for (i=0; i<5; i++) {
12.             printf("this is thread_fun print!\n");
13.             sleep(1);
14.        }
15.        pthread_exit((void*)value_ptr);
16.}
17.//////////////////////////////////////////////////////
18.int main(int argc, char **argv) {
19.       pthread_t pid;
20.       int ret;
21.       void* value;
22.
23.       ret = pthread_create(&pid, NULL, thread_fun, NULL);
24.       if (ret) {
25.             printf("pthread_create failed!\nerrno:%d\n", errno);
26.             return -1;
27.       }
28.       printf("pthread_create ok!\n");
29.
30.       pthread_join(pid, &value);
31.       printf("pthread exit value: %s\n", value);
32.       return 0;
33.}


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值