Linux系统下的多线程遵循POSIX线程接口,称为 pthread。编写Linux下的多线程程序,需要使用头文件pthread.h,连接时需要使用库libpthread.a。顺便说一下,Linux 下pthread的实现是通过系统调用clone()来实现的。clone()是 Linux所特有的系统调用,它的使用方式类似fork,关于clone()的详细情况,有兴趣的读者可以去查看有关文档说明。下面我们展示一个最简单的 多线程程序 pthread_create.c。

  一个重要的线程创建函数原型:

  #include

  int pthread_create(pthread_t *restrict tidp,const pthread_attr_t *restrict attr, void *(*start_rtn)(void),void *restrict arg);

  返回值:若是成功建立线程返回0,否则返回错误的编号

  形式参数:

  pthread_t *restrict tidp 要创建的线程的线程id指针

  const pthread_attr_t *restrict attr 创建线程时的线程属性

  void* (start_rtn)(void) 返回值是void类型的指针函数

  void *restrict arg start_rtn的行参

  例程1:

  功能:创建一个简单的线程

  程序名称:pthread_create.c

  代码如下:

  #include

  #include

  void *mythread1(void)

  {

  int i;

  for(i = 0; i < 10; i++)

  {

  printf("This is the 1st pthread,created by xiaoqiang!\n");

  sleep(1);

  }

  }

  void *mythread2(void)

  {

  int i;

  for(i = 0; i < 10; i++)

  {

  printf("This is the 2st pthread,created by xiaoqiang!\n");

  sleep(1);

  }

  }

  int main(int argc, const char *argv[])

  {

  int i = 0;

  int ret = 0;

  pthread_t id1,id2;

  ret = pthread_create(&id1, NULL, (void *)mythread1,NULL);

  if(ret)

  {

  printf("Create pthread error!\n");

  return 1;

  }

  ret = pthread_create(&id2, NULL, (void *)mythread2,NULL);

  if(ret)

  {

  printf("Create pthread error!\n");

  return 1;

  }

  pthread_join(id1,NULL);

  pthread_join(id2,NULL);

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ vi thread1.c

  fs@ubuntu:~/qiang/thread$ gcc -o thread1 thread1.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread1

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 2st pthread,created by xiaoqiang!

  This is the 1st pthread,created by xiaoqiang!

  fs@ubuntu:~/qiang/thread$

  两个线程交替执行。

  另外,因为pthread的库不是linux系统的库,所以在进行编译的时候要加上-lpthread,否则编译不过,会出现下面错误

  thread_test.c: 在函数 ‘create’ 中:

  thread_test.c:7: 警告: 在有返回值的函数中,程序流程到达函数尾

  /tmp/ccOBJmuD.o: In function `main':thread_test.c:(.text+0x4f):对‘pthread_create’未定义的引用

  collect2: ld 返回 1

  此例子介绍了创建线程的方法

  下面例子介绍向线程传递参数。

  例程2:

  功能:向新的线程传递整形值

  程序名称:pthread_int.c

  代码如下:

  #include

  #include

  void *create(void *arg)

  {

  int *num;

  num = (int *)arg;

  printf("Create parameter is %d\n",*num);

  return (void *)0;

  }

  int main(int argc, const char *argv[])

  {

  pthread_t id1;

  int error;

  int test = 4;

  int *attr = &test;

  error = pthread_create(&id1,NULL,create,(void *)attr);

  if(error)

  {

  printf("Pthread_create is not created!\n");

  return -1;

  }

  sleep(1);

  printf("Pthread_create is created..\n");

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ vi thread2.c

  fs@ubuntu:~/qiang/thread$ gcc -o thread2 thread2.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread2

  Create parameter is 4

  Pthread_create is created..

  fs@ubuntu:~/qiang/thread$

  例程总结:

  可以看出来,我们在main函数中传递的整行指针,传递到我们新建的线程函数中。

  在上面的例子可以看出来我们向新的线程传入了另一个线程的int数据,线程之间还可以传递字符串或是更复杂的数据结构。

  例程3:

  程序功能:向新建的线程传递字符串

  程序名称:pthread_string.c

  代码如下:

  #include

  #include

  void *create(char *arg)

  {

  char *str;

  str = arg;

  printf("The parameter passed from main is %s\n",str);

  return (void *)0;

  }

  int main()

  {

  int error;

  pthread_t id1;

  char *str1 = "Hello ,xiaoqiang!";

  char *attr = str1;

  error = pthread_create(&id1, NULL, create, (void *)attr);

  if(error != 0)

  {

  printf("This pthread is not created!\n");

  return -1;

  }

  sleep(1);

  printf("pthread is created..\n");

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ ./thread3

  The parameter passed from main is Hello ,xiaoqiang!

  pthread is created..

  fs@ubuntu:~/qiang/thread$

  例程总结:

  可以看出来main函数中的字符串传入了新建的线程中。

  例程4:

  程序功能:向新建的线程传递字符串

  程序名称:pthread_struct.c

  代码如下:

  #include

  #include

  #include

  struct menber

  {

  int a;

  char *s;

  };

  void *create(void *arg)

  {

  struct menber *temp;

  temp = (struct menber *)arg;

  printf("menber->a = %d\n",temp->a);

  printf("menber->s = %s\n",temp->s);

  return (void *)0;

  }

  int main()

  {

  int error;

  pthread_t id1;

  struct menber *p;

  p = (struct menber *)malloc(sizeof(struct menber));

  p->a = 1;

  p->s = "xiaoqiang!";

  error = pthread_create(&id1,NULL,create,(void *)p);

  if(error)

  {

  printf("pthread is not created!\n");

  return -1;

  }

  sleep(1);

  printf("pthread is created!\n");

  free(p);

  p = NULL;

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ vi thread4.c

  fs@ubuntu:~/qiang/thread$ gcc -o thread4 thread4.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread4

  menber->a = 1

  menber->s = xiaoqiang!

  pthread is created!

  fs@ubuntu:~/qiang/thread$

  例程总结:

  可以看出来main函数中的一个结构体传入了新建的线程中。

  线程包含了标识进程内执行环境必须的信息。他集成了进程中的所有信息都是对线程进行共享的,包括文本程序、程序的全局内存和堆内存、栈以及文件描述符

  例程5:

  程序目的:验证新建立的线程可以共享进程中的数据

  程序名称:pthread_share.c

  代码如下:

  #include

  #include

  static int a = 5;

  void *create(void *arg)

  {

  printf("New pthread...\n");

  printf("a = %d\n",a);

  return (void *)0;

  }

  int main(int argc, const char *argv[])

  {

  int error;

  pthread_t id1;

  error = pthread_create(&id1, NULL, create, NULL);

  if(error != 0)

  {

  printf("new thread is not created!\n");

  return -1;

  }

  sleep(1);

  printf("New thread is created...\n");

  return 0;

  }

  结果如下:

  fs@ubuntu:~/qiang/thread$ vi thread5.c

  fs@ubuntu:~/qiang/thread$ gcc -o thread5 thread5.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread5

  New pthread...

  a = 5

  New thread is created...

  fs@ubuntu:~/qiang/thread$

  例程总结:

  可以看出来,我们在主线程更改了我们的全局变量a的值的时候,我们新建立的线程则打印出来了改变的值,可以看出可以访问线程所在进程中的数据信息。

  2、线程的终止

  如果进程中任何一个线程中调用exit,_Exit,或者是_exit,那么整个进程就会终止,

  与此类似,如果信号的默认的动作是终止进程,那么,把该信号发送到线程会终止进程。

  线程的正常退出的方式:

  (1) 线程只是从启动例程中返回,返回值是线程中的退出码

  (2) 线程可以被另一个进程进行终止

  (3) 线程自己调用pthread_exit函数

  两个重要的函数原型:

  include

  void pthread_exit(void *rval_ptr);

  /*rval_ptr 线程退出返回的指针*/

  int pthread_join(pthread_t thread,void **rval_ptr);

  /*成功结束进程为0,否则为错误编码*/

  pthread_join使一个线程等待另一个线程结束。

  代码中如果没有pthread_join主线程会很快结束从而使整个进程结束,从而使创建的线程没有机会开始执行就结束了。加入pthread_join后,主线程会一直等待直到等待的线程结束自己才结束,使创建的线程有机会执行。

  头文件 : #include

  函数定义: int pthread_join(pthread_t thread, void **retval);

  描述 :pthread_join()函数,以阻塞的方式等待thread指定的线程结束。当函数返回时,被等待线程的资源被收回。如果线程已经结束,那么该函数会立即返回。并且thread指定的线程必须是joinable的。

  参数 :thread: 线程标识符,即线程ID,标识唯一线程。retval: 用户定义的指针,用来存储被等待线程的返回值。

  返回值 : 0代表成功。 失败,返回的则是错误号。

  例程6

  程序目的:线程正常退出,接受线程退出的返回码

  程序名称:pthread_exit.c

  执行代码如下:

  #include

  #include

  #include

  void *create(void *arg)

  {

  printf("new thread is created ... \n");

  return (void *)0;

  }

  int main(int argc,char *argv[])

  {

  pthread_t tid;

  int error;

  void *temp;

  error = pthread_create(&tid, NULL, create, NULL);

  if( error )

  {

  printf("thread is not created ... \n");

  return -1;

  }

  error = pthread_join(tid, &temp);

  if( error )

  {

  printf("thread is not exit ... \n");

  return -2;

  }

  printf("thread is exit code %d \n", (int )temp);

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ vi thread6.c

  fs@ubuntu:~/qiang/thread$ gcc -o thread6 thread6.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread6

  new thread is created ...

  thread is exit code 0

  fs@ubuntu:~/qiang/thread$

  例程总结:

  可以看出来,线程退出可以返回线程的int数值。

  线程退出不仅仅可以返回线程的int数值,还可以返回一个复杂的数据结构

  例程7

  程序目的:线程结束返回一个复杂的数据结构

  代码如下:

  #include

  #include

  #include

  struct menber

  {

  int a;

  char *b;

  }temp={8,"xiaoqiang"};

  void *create(void *arg)

  {

  printf("new thread ... \n");

  return (void *)&temp;

  }

  int main(int argc,char *argv[])

  {

  int error;

  pthread_t tid;

  struct menber *c;

  error = pthread_create(&tid, NULL, create, NULL);

  if( error )

  {

  printf("new thread is not created ... \n");

  return -1;

  }

  printf("main ... \n");

  error = pthread_join(tid,(void *)&c);

  if( error )

  {

  printf("new thread is not exit ... \n");

  return -2;

  }

  printf("c->a = %d \n",c->a);

  printf("c->b = %s \n",c->b);

  sleep(1);

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ gcc -o thread7 thread7.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread7

  main ...

  new thread ...

  c->a = 8

  c->b = xiaoqiang

  fs@ubuntu:~/qiang/thread$

  例程总结:

  一定要记得返回的数据结构要是在这个数据要返回的结构没有释放的时候应用,如果数据结构已经发生变化,那返回的就不会是我们所需要的,而是脏数据。

  3、线程标识

  函数原型:

  #include

  pthread_t pthread_self(void);

  pid_t getpid(void);

  getpid()用来取得目前进程的进程识别码,函数说明

  例程8

  程序目的:实现在新建立的线程中打印该线程的id和进程id

  代码如下:

  #include

  #include

  #include /*getpid()*/

  void *create(void *arg)

  {

  printf("New thread .... \n");

  printf("This thread's id is %u \n", (unsigned int)pthread_self());

  printf("The process pid is %d \n",getpid());

  return (void *)0;

  }

  int main(int argc,char *argv[])

  {

  pthread_t tid;

  int error;

  printf("Main thread is starting ... \n");

  error = pthread_create(&tid, NULL, create, NULL);

  if(error)

  {

  printf("thread is not created ... \n");

  return -1;

  }

  printf("The main process's pid is %d \n",getpid());

  sleep(1);

  return 0;

  }

  执行结果如下:

  fs@ubuntu:~/qiang/thread$ gcc -o thread8 thread8.c -lpthread

  fs@ubuntu:~/qiang/thread$ ./thread8

  Main thread is starting ...

  The main process's pid is 4955

  New thread ....

  This thread's id is 3075853120

  The process pid is 4955

  fs@ubuntu:~/qiang/thread$

  最后提供一些参考资料

  linux多线程编程

  http://www.makeru.com.cn/course/details/1937?s=45051

  循环链表及线性表的应用

  http://www.makeru.com.cn/course/details/1902?s=45051

  linux基础

  http://www.makeru.com.cn/course/details/2058?s=45051

Linux多线程编程实例解析的更多相关文章

  1. Linux C语言多线程编程实例解析

    Linux系统下的多线程遵循POSIX线程接口,称为 pthread.编写Linux下的多线程程序,需要使用头文件pthread.h,连接时需要使用库libpthread.a.顺便说一下,Linux ...

  2. Linux多线程编程详细解析----条件变量 pthread_cond_t

    Linux操作系统下的多线程编程详细解析----条件变量 1.初始化条件变量pthread_cond_init #include <pthread.h> int pthread_cond_ ...

  3. Linux网络编程实例解析

    **************************************************************************************************** ...

  4. Linux 多线程编程实例

    一.多线程 VS 多进程 和进程相比,线程有很多优势.在Linux系统下,启动一个新的进程必须分配给它独立的地址空间,建立众多的数据表来维护代码段和数据.而运行于一个进程中的多个线程,他们之间使用相同 ...

  5. Linux 多线程编程 实例 2

    编写一个程序,开启3个线程,这3个线程的ID分别为A.B.C,每个线程将自己的ID在屏幕上打印10遍,要求输出结果必须按ABC的顺序显示:如:ABCABC….依次递推. 使用条件变量来实现: #inc ...

  6. Linux 多线程编程 实例 1

    子线程循环 10 次,接着主线程循环 100 次,接着又回到子线程循环 10 次,接着再回到主线程又循环 100 次,如此循环50次,试写出代码. #include <pthread.h> ...

  7. linux下C语言多线程编程实例

    用一个实例.来学习linux下C语言多线程编程实例. 代码目的:通过创建两个线程来实现对一个数的递加.代码: //包含的头文件 #include <pthread.h> #include ...

  8. Linux多线程编程初探

    Linux线程介绍 进程与线程 典型的UNIX/Linux进程可以看成只有一个控制线程:一个进程在同一时刻只做一件事情.有了多个控制线程后,在程序设计时可以把进程设计成在同一时刻做不止一件事,每个线程 ...

  9. 【操作系统作业-lab4】 linux 多线程编程和调度器

    linux多线程编程 参考:https://blog.csdn.net/weibo1230123/article/details/81410241 https://blog.csdn.net/skyr ...

随机推荐

  1. 痞子衡嵌入式:原来i.MXRT1xxx系列里也暗藏了Product ID寄存器

    大家好,我是痞子衡,是正经搞技术的痞子.今天痞子衡给大家介绍的是i.MXRT1xxx系列里暗藏的Product ID寄存器. MCU 厂商在定义一个产品系列时,通常是会预先规划产品发展路线的(即会有一 ...

  2. 在树莓派用C#+Winform实现传感器监测

    最近学校里发了个任务,说要做一个科技节小发明,然后我就掏出我的树莓派准备大干一场. 调料 Raspberry Pi 3B+ 树莓派GPIO扩展板 3.5寸电容触摸屏(GPIO接口) 土壤湿度传感器(G ...

  3. 【简单数据结构】二叉树的建立和递归遍历--洛谷 P1305

    题目描述 输入一串二叉树,用遍历前序打出. 输入格式 第一行为二叉树的节点数n.(n \leq 26n≤26) 后面n行,每一个字母为节点,后两个字母分别为其左右儿子. 空节点用*表示 输出格式 前序 ...

  4. Linux从头学13:想彻底搞懂“系统调用”的底层原理?建议您别错过这篇【调用门】

    作 者:道哥,10+年嵌入式开发老兵,专注于:C/C++.嵌入式.Linux. 关注下方公众号,回复[书籍],获取 Linux.嵌入式领域经典书籍:回复[PDF],获取所有原创文章( PDF 格式). ...

  5. 阿里云短信功能php

    1. 引入文件: https://help.aliyun.com/document_detail/53111.html?spm=a2c1g.8271268.10000.99.5a8ddf25gG0wW ...

  6. DS博客作业03--树

    这个作业属于哪个班级 数据结构--网络2011/2012 这个作业的地址 DS博客作业03--树 这个作业的目标 学习树结构设计及运算操作 姓名 黄静 目录 0. PTA得分截图 1. 本周学习总结 ...

  7. SourceTree使用详解-摘录收藏

    前言: 非原创,好文收录,原创作者:追逐时光者 俗话说的好工欲善其事必先利其器,Git分布式版本控制系统是我们日常开发中不可或缺的.目前市面上比较流行的Git可视化管理工具有SourceTree.Gi ...

  8. Yaml书写方法详解

    一.关于yaml语法详解 yaml通常以空格做锁进,一般是2个或者4个,如果写更多,只要格式对其 就不会报错 二.yaml基本语法规则 大小写敏感 使用锁进表示层级关系 缩紧时候不允许用tab键,只能 ...

  9. 【C++ Primer Plus】编程练习答案——第10章

    1 // chapter10_1_account.h 2 3 #ifndef LEARN_CPP_CHAPTER10_1_ACCOUNT_H 4 #define LEARN_CPP_CHAPTER10 ...

  10. CSS3思维导图