找回密码
 用户注册

QQ登录

只需一步,快速开始

查看: 3602|回复: 0

Linux多线程函数解析

[复制链接]
发表于 2011-12-29 10:16:35 | 显示全部楼层 |阅读模式
Linux多线程函数解析
Linux多线程函数用得比较多的是下面的3个
pthread_create(),pthread_exit(),pthread_join();它们都是在头文件<pthread.h>之中。编译时需要加静态库-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,否则返回出错编号
  返回成功时,由tidp指向的内存单元被设置为新创建线程的线程ID。attr参数用于制定各种不同的线程属性。新创建的线程从start_rtn函数的地址开始运行,该函数只有一个万能指针参数arg,如果需要向start_rtn函数传递的参数不止一个,那么需要把这些参数放到一个结构中,然后把这个结构的地址作为arg的参数传入。
  linux下用C开发多线程程序,Linux系统下的多线程遵循POSIX线程接口,称为pthread。
  由 restrict 修饰的指针是最初唯一对指针所指向的对象进行存取的方法,仅当第二个指针基于第一个时,才能对对象进行存取。对对象的存取都限定于基于由 restrict 修饰的指针表达式中。 由 restrict 修饰的指针主要用于函数形参,或指向由 malloc() 分配的内存空间。restrict 数据类型不改变程序的语义。 编译器能通过作出 restrict 修饰的指针是存取对象的唯一方法的假设,更好地优化某些类型的例程。
参数
  第一个参数为指向线程标识符的指针。
  第二个参数用来设置线程属性。
  第三个参数是线程运行函数的起始地址。
  最后一个参数是运行函数的参数。
另外,在编译时注意加上-lpthread参数,以调用静态链接库。因为pthread并非Linux系统的默认库

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!
  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <stdlib.h>
  4. #include <sys/types.h>
  5. #include <errno.h>
  6. #include <pthread.h>
  7. //////////////////////////////////////////////////////
  8. void *thread_fun(void *arg) {
  9.     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.     ret = pthread_create(&pid, NULL, thread_fun, NULL);
  23.     if (ret) {
  24.         printf("pthread_create failed!\nerrno:%d\n", errno);
  25.         return -1;
  26.     }
  27.     printf("pthread_create ok!\n");
  28.     pthread_join(pid, &value);
  29.     printf("pthread exit value: %s\n", value);
  30.     return 0;
  31. }
复制代码
作者:Yao_GUET 发表于2011-12-28 22:36:40 原文链接
您需要登录后才可以回帖 登录 | 用户注册

本版积分规则

Archiver|手机版|小黑屋|ACE Developer ( 京ICP备06055248号 )

GMT+8, 2024-5-2 21:27 , Processed in 0.014129 second(s), 6 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表