/*
* 对于线程之间的操作:
* 一个进程中会有多个线程,各个线程之间的或向切换会付出很小的代价相比于进程之间的切换
* 为什么要引入多线程:
* 1.与进程相比,他是一种非常节俭的多任务的操作方式。文们知道,在linux系统下,启动一个新的进程,
* 必须分配一个独立的地址空间,建立众多的数据表来维护它的代码段,堆栈段和数据段,这是一种开销和维护成本比较大的多任务工作方式。
* 而运行一个进程中的多个线程,他们彼此之间使用相同的地址空间,共享大部分的数据,启动一个线程花费的时间和空间远小于启动一个进程
* 所花费的空间;
* 2.线程间的通信比较方便,对于不同的进程来说,他们具有独立的数据空间,要进行数据传递只能以通信的方式进行,这种方式不仅费时,而且不方便
* 线程则不然,由于同一进程下的线程之间共享数据空间,所以一个线程的数据可以直接为其他线程所用。
* 3.提高应用程序的响应;
* 4.使多CPU系统更加有效,操作系统会保证当线程数不大于CPU数目时,不同的线程运行在不同的CPU上
* 5.改善程序结构,一个即长有复杂的进程,可以考虑分为多个线程,成为几个独立或半独立的运行部分,这样程序便于理解和修改
* */ #include <pthread.h>
#include <sys/time.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <time.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/resource.h> #define MAX 10 pthread_t thread[2];
pthread_mutex_t mut;
int number = 0,i; void * thread1(void * )
{
printf("thread1 : I'm thread 1\n");
for(i=0; i<MAX; i++)
{
pthread_mutex_lock(&mut);
printf("thread1 : number = %d\n",number);
number++;
pthread_mutex_unlock(&mut);
msleep(1000*100);
}
printf("thread1 :wait the main thread to finish the task?\n");
pthread_exit(NULL);
} void * thread2(void * )
{
printf("thread2 : I'm thread 2\n");
for(i=0; i<MAX; i++)
{
pthread_mutex_lock(&mut);
printf("thread2 : number = %d\n",number);
number--;
pthread_mutex_unlock(&mut);
msleep(1000*100);
}
printf("thread2 :wait the main thread to finish the task?\n");
pthread_exit(NULL);
} void thread_create(void)
{
int temp;
memset(&thread,0,sizeof(thread));
temp = pthread_create(&thread[0],NULL,thread1,NULL);
if(temp != 0)
printf("create thread 1 failed\n");
else
printf("create thread 1 successful\n"); temp = pthread_create(&thread[1],NULL,thread2,NULL);
if(temp != 0)
printf("create thread 2 failed\n");
else
printf("create thread 2 successful\n");
} void thread_wait(void)
{
if(thread[0] != 0)
{
pthread_join(thread[0],NULL);
printf("thread 1 has finished \n");
}
if(thread[1] != 0)
{
pthread_join(thread[0],NULL);
printf("thread 2 has finished \n");
}
} int main()
{
pthread_mutex_init(&mut,NULL);
printf("I am the main thread\n");
thread_create();
printf("Main thread wait other thread run\n");
thread_wait();
return 0;
}

在我笔记本上的运行结果是:

I am the main thread
create thread 1 successful
create thread 2 successful
Main thread wait other thread run
thread2 : I'm thread 2
thread1 : I'm thread 1
thread2 : number = 0
thread1 : number = -1
thread2 : number = 0
thread1 : number = -1
thread2 : number = 0
thread1 : number = -1
thread1 : number = 0
thread2 : number = 1
thread2 : number = 0
thread1 : number = -1
thread2 : number = 0
thread1 : number = -1
thread1 : number = 0
thread2 : number = 1
thread2 :wait the main thread to finish the task?
thread1 :wait the main thread to finish the task?
thread 1 has finished
thread 2 has finished

linux 中多线程使用的更多相关文章

  1. linux中多线程解析

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

  2. Linux中多线程信号的处理

    1. 博文:Linux多线程中使用信号-1  http://blog.csdn.net/qq276592716/article/details/7325250 2. 博文:Linux多线程信号总结  ...

  3. 【转】Linux中多线程wait使用注意

    使用管道生成的while,是无法进行并发管理的 在处理日志的时候,采用管道多线程,怎么都实现不了wait功能,经上篇文章才知道,使用管道生成的while,无法进行并发管理. while read qu ...

  4. Linux中线程的挂起与恢复(进程暂停)

    http://www.linuxidc.com/Linux/2013-09/90156.htm 今天在网上查了一下Linux中对进程的挂起与恢复的实现,相关资料少的可怜,大部分都是粘贴复制.也没有完整 ...

  5. Linux中查看进程的多线程

    在SMP系统中,我们的应用程序经常使用多线程的技术,那么在Linux中如何查看某个进程的多个线程呢? 本文介绍3种命令来查看Linux系统中的线程(LWP)的情况: 在我的系统中,用qemu-syst ...

  6. Linux中查看进程的多线程pstree, ps -L

    Linux中查看进程的多线程 在SMP系统中,我们的应用程序经常使用多线程的技术,那么在Linux中如何查看某个进程的多个线程呢? 本文介绍3种命令来查看Linux系统中的线程(LWP)的情况:在我的 ...

  7. linux 中 eclipse 开发 c/c++ 多线程程序,添加 libpthread.a 库支持

    导入头文件 在 linux 中开发多线程程序,在使用到 pthread 系列函数的文件中,需要导入头文件: #include <pthread.h> 链接 libpthread.a 在编译 ...

  8. linux中c多线程同步方法

    https://blog.csdn.net/jkx01whg/article/details/78119189 Linux下提供了多种方式来处理线程同步,最常用的是互斥锁.条件变量和信号量. 一.互斥 ...

  9. [转]Linux 的多线程编程的高效开发经验

    Linux 平台上的多线程程序开发相对应其他平台(比如 Windows)的多线程 API 有一些细微和隐晦的差别.不注意这些 Linux 上的一些开发陷阱,常常会导致程序问题不穷,死锁不断.本文中我们 ...

随机推荐

  1. P - Shopaholic

    P - Shopaholic Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit ...

  2. BZOJ 2324: [ZJOI2011]营救皮卡丘( floyd + 费用流 )

    昨晚写的题...补发一下题解... 把1~N每个点拆成xi, yi 2个. 预处理i->j经过编号不超过max(i,j)的最短路(floyd) S->0(K, 0), S->xi(1 ...

  3. Spring jdbcTemplate + EasyUI 物理分页

    前文说到,新项目中,用到的是SpringMVC + jdbcTemplate,前台是EasyUI,发现同事以前封装分页是逻辑分页,于是,自己动手封装了下物理分页. 这个是核心分页实体: import ...

  4. Sublime Text3中最常用的快捷键

    ctrl+D 选词快捷键 反复按这快捷键,可以方便的向下选择相同的词~ alt + shift +2  分2屏  数字为几就是几屏 Alt + F3 可以一次性选择一个文件里面的所有相同的文本进行编辑 ...

  5. vs 2013下自定义ASP.net MVC 5/Web API 2 模板(T4 视图模板/控制器模板)

    vs 2013下自定义ASP.net MVC 5/Web API 2  模板(T4 视图模板/控制器模板): Customizing ASP.NET MVC 5/Web API 2 Scaffoldi ...

  6. 基于MDK的ARM-GCC开发环境建立及新唐M0的HID类设备的C++开发

    一,下载安装测试arm-none-eabi-gcc编译工具链 1,查看arm-none-eabi-gcc编译工具版本        打开网页:https://sourcery.mentor.com/G ...

  7. Android-设置PullToRefresh下拉刷新样式

    以下是开源控件PullToRefresh的自定义样式属性: <?xml version="1.0" encoding="utf-8"?> <r ...

  8. Bootstrap禁用响应式布局

    在Bootstrap中极其重要的一个技术内容便是响应式布局了,一次编码针对不同设备终端的强大能力使得响应式技术愈发流行. 不过正所谓"萝卜青菜各有所爱",如果你想要使用Bootst ...

  9. spring集成mongodb封装的简单的CRUD

    1.什么是mongodb         MongoDB是一个基于分布式文件存储的数据库.由C++语言编写.旨在为WEB应用提供可扩展的高性能数据存储解决方案. mongoDB MongoDB是一个介 ...

  10. 随手写了一个linux服务端与window客户端的epoll程序,当做练习把。

    linux服务端:监听链接,处理消息 #include <sys/socket.h>     #include <sys/epoll.h>     #include <n ...