转:pthread_create()

http://blog.csdn.net/youbang321/article/details/7815707

原型:int  pthread_create((pthread_t  *thread,  pthread_attr_t  *attr,  void  *(*start_routine)(void  *),  void  *arg)

用法:#include  <pthread.h>

功能:创建线程(实际上就是确定调用该线程函数的入口点),在线程创建以后,就开始运行相关的线程函数。

说明:thread:线程标识符;

attr:线程属性设置;

start_routine:线程函数的起始地址;

arg:传递给start_routine的参数;

返回值:成功,返回0;出错,返回-1。

举例:

[cpp] view plain copy

print?

  1. /*thread.c*/
  2. #include <stdio.h>
  3. #include <pthread.h>
  4. /*线程一*/
  5. void thread_1(void)
  6. {
  7. int i=0;
  8. for(i=0;i<=6;i++)
  9. {
  10. printf("This is a pthread_1.\n");
  11. if(i==2)
  12. pthread_exit(0);
  13. sleep(1);
  14. }
  15. }
  16. /*线程二*/
  17. void thread_2(void)
  18. {
  19. int i;
  20. for(i=0;i<3;i++)
  21. printf("This is a pthread_2.\n");
  22. pthread_exit(0);
  23. }
  24. int main(void)
  25. {
  26. pthread_t id_1,id_2;
  27. int i,ret;
  28. /*创建线程一*/
  29. ret=pthread_create(&id_1,NULL,(void  *) thread_1,NULL);
  30. if(ret!=0)
  31. {
  32. printf("Create pthread error!\n");
  33. return -1;
  34. }
  35. /*创建线程二*/
  36. ret=pthread_create(&id_2,NULL,(void  *) thread_2,NULL);
  37. if(ret!=0)
  38. {
  39. printf("Create pthread error!\n");
  40. return -1;
  41. }
  42. /*等待线程结束*/
  43. pthread_join(id_1,NULL);
  44. pthread_join(id_2,NULL);
  45. return 0;
  46. }

以下是程序运行结果:

备注:pthread库不是Linux系统默认的库,连接时需要使用静态库libpthread.a,所以在线程函数在编译时,需要连接库函数,如上图    gcc pthread_create.c -o pthread_create -lpthread

时间: 2024-10-10 21:06:10

转:pthread_create()的相关文章

pthread_create的浅析

看下面代码,你是否能得出正确答案呢? #include<stdio.h> #include<string.h> #include <pthread.h>    void* print1(void* data){     printf("1 "); }    void* print2(void* data){     printf("2 "); }   void* print3(void* data){     printf(&qu

线程异常:undefined reference to &#39;pthread_create&#39; 处理

源码: #include <stdio.h> #include <pthread.h> #include <sched.h> void *producter_f (void *arg); void *consumer_f (void *arg); int buffer_has_item=0; pthread_mutex_t mutex; int running =1 ; int main (void) { pthread_t consumer_t; pthread_t

值得剖析的pthread_create测试线程

/* * pthread.c: * Tiny test program to see whether POSIX threads work. */ static const char rcsid[] = "$Id: pthread.c,v 1.4 2005/10/26 22:56:05 chris Exp $"; #include <sys/types.h> #include <errno.h>#include <pthread.h>#include

静态成员函数与pthread_create,纯虚函数匹配使用实例

最近在浏览朋友写的代码,发现有一个细节非常值得学习,在这里将代码贴出来简单分享一下: #ifndef THREAD_H_ #define THREAD_H_ #include <pthread.h> #include <stdexcept> #include "Copyable.h" /* * 这个线程类是个抽象类,希望派生类去改写它 */ class Thread : public Copyable{ public: Thread(); virtual ~Th

pthread.h 的 undefined reference to `pthread_create&#39;

在编译中要加 -lpthread或-pthread参数(不同版本的gcc可能不一样,man gcc可以查阅对应参数). 例如:在加了头文件#include <pthread.h>之后执行 pthread.c文件,需要使用如下命令: gcc -lpthread -o thread thread.c 或 gcc -pthread -o thread thread.c 这种情况类似于<math.h>的使用,需在编译时加 -m 参数. pthread.h 的 undefined refer

Function: pthread_create

Function:pthread_create do what:To create a new thread head file: include <pthread.h> prototype: int pthread_create( pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *arg ); explain: demo: ptcreate.c #include <pthread

pthread_create如何传递两个参数以上的参数

涉及多参数传递给线程的,都需要使用结构体将参数封装后,将结构体指针传给线程 定义一个结构体 struct mypara { var para1;//参数1 var para2;//参数2 } 将这个结构体指针,作为void *形参的实际参数传递 struct mypara pstru; pthread_create(&ntid, NULL, thr_fn,& (pstru)); 函数中需要定义一个mypara类型的结构指针来引用这个参数 void *thr_fn(void *arg) {

undefined reference to `pthread_create&#39;问题解决

在编译pthread有关的程序时,出现undefined reference to `pthread_create'这样的错误. 问题原因: pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库. 问题解决: 方法一: 在编译中要加 -lpthread参数gcc thread.c -o thread -lpthread

pthread_create

//\glibc-2.24\sysdeps\nptl\pthread.h/* Create a new thread, starting with execution of START-ROUTINE getting passed ARG. Creation attributed come from ATTR. The new handle is stored in *NEWTHREAD. */ extern int pthread_create (pthread_t *__restrict _

类成员函数作为pthread_create函数参数

from:http://www.cnblogs.com/shijingxiang/articles/5389294.html 近日需要将线程池封装成C++类,类名为Threadpool.在类的成员函数exec_task中调用pthread_create去启动线程执行例程thread_rounter.编译之后报错如下: spfs_threadpool.cpp: In member function ‘int Threadpool::exec_task(task*)’: spfs_threadpoo