Linux高性能server编程——多线程编程(下)
多线程编程
条件变量
假设说相互排斥锁是用于同步线程对共享数据的訪问的话。那么条件变量则是用于线程之间同步共享数据的值。
条件变量提供了一种线程间的通信机制:当某个共享数据达到某个值得时候,唤醒等待这个共享数据的线程。
条件本身是由相互排斥量保护的。线程在改变条件状态前必须首先锁住相互排斥量,其它现成在获得相互排斥量之前不会察觉到这样的变化,由于必须锁住相互排斥量以后才干计算条件。
条件变量的相关函数主要有例如以下5个:
#include <pthread.h>
int pthread_cond_destroy(pthread_cond_t *cond);
int pthread_cond_init(pthread_cond_t *restrict cond,const pthread_condattr_t *restrict attr);
int pthread_cond_broadcast(pthread_cond_t *cond);
int pthread_cond_signal(pthread_cond_t *cond);
int pthread_cond_wait(pthread_cond_t *restrict cond, phread_mutex_t *restrict mutex)
这些函数的第一个參数cond指向要操作的目标条件变量,条件变量的类型是pthread_cond_t结构体。
pthread_cond_init函数用于初始化条件变量。cond_attr參数指定条件变量的属性。假设将它设置为NULL,则表示使用默认属性。条件变量的属性不多,并且和相互排斥锁的属性类型相似,所以我们不在累赘。
除了pthread_cond_init函数外,我们还能够使用例如以下方式初始化一个条件变量:
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
宏PTHREAD_COND_INITIALIZER实际上仅仅是把条件变量的 各个字段都初始化为0。
pthread_cond_destroy函数用于销毁条件变量,以释放其占用的内核资源。销毁一个正在等待的条件变量将失败并返回EBUSY。
pthread_cond_broadcast函数以广播的方式唤醒全部等待目标条件变量的线程。pthread_cond_signal函数用于唤醒一个等待目标条件变量的线程。至于哪个线程将被唤醒,则取决于线程的优先级和调度策略。
有时候我们可能想唤醒一个指定的线程,但pthread没有对该需求提供解决方法。只是我们可以间接地实现该需求:定义一个可以唯一表示目标现成的全局变量,在唤醒等待条件变量的线程前先设置该全局变量为目标线程,然后採用广播方式唤醒全部等待条件变量的线程。这些线程被唤醒后都检查该变量以推断被唤醒的是否是自己,假设是就開始运行兴许代码,假设不是则返回继续等待。
pthread_cond_wait函数用于等待目标条件变量。
mutex參数是用于保护条件变量的相互排斥锁,以确pthread_cond_wait操作的原子性。在调用pthread_cond_wait前。必须确保相互排斥锁mutex已经加锁。否则将导致不可预期的结果。
pthread_cond_wait函数运行时。首先把调用线程放入条件变量的等待队列中,然后将相互排斥锁mutex解锁。可见。从pthread_cond_wait開始运行到其调用线程被放入条件变量的等待队列之间的这段时间内。pthread_cond_signal和pthread_cond_broadcast等函数不会改动条件变量。换言之,pthread_cond_wait函数不会错过目标条件变量的不论什么变化。
当pthread_cond_wait函数成功返回时,相互排斥锁mutex将再次被锁上。
上面这些函数成功时返回0。失败时返回错误码。
例如以下程序展示了怎样使用条件变量:
实例代码
/******************************************************************************
* 描写叙述:
* 应用Pthreads条件变量的实例代码,主线程创建三个线程,当中两个为“count”变量做
* 加法运算。第三个线程监视“count”的值。 当“count”达到一个限定值,等待线程准备接收来
* 自于两个加法线程中一个的信号,等待 线程唤醒后更改“count”的值。程序继续执行直到加法
* 线程达到TCOUNT的值。最后,主程序打印出count的值。
******************************************************************************/
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h> #define NUM_THREADS 3
#define TCOUNT 5 //单线程轮询次数
#define COUNT_LIMIT 7 //发送信号的次数
int count = 0; //全局的累加量 pthread_mutex_t count_mutex;
pthread_cond_t count_threshold_cv; void *inc_count(void *t) {
int i;
long my_id = (long) t; for (i = 0; i < TCOUNT; i++) {
pthread_mutex_lock(&count_mutex);
count++;
/*
* 检查count的值,假设条件满足就发信号给等待线程
* 注意,此处是用信号量锁定的。 * */
if (count < COUNT_LIMIT) {
printf("inc_count(): thread %ld, count = %d Threshold reached. ",
my_id, count);
pthread_cond_signal(&count_threshold_cv);
printf("Just sent signal.\n");
}
printf("inc_count(): thread %ld, count = %d, unlocking mutex\n", my_id,
count);
pthread_mutex_unlock(&count_mutex); /*为线程轮询相互排斥锁添加延时*/
sleep(1);
}
pthread_exit(NULL);
} void *watch_count(void *t) {
long my_id = (long) t;
printf("Starting watch_count(): thread %ld\n", my_id); /*锁定相互排斥量并等待信号,注意,pthread_cond_wait函数在等待时将自己主动以自己主动原子方式
* 解锁相互排斥量。还有,请注意,假设等待线程执行到等待函数之前已经满足COUNT_LIMIT的
* 条件推断,轮询会忽略掉等待函数。
* */
while (count < COUNT_LIMIT) {
pthread_mutex_lock(&count_mutex);
printf("watch_count(): thread %ld going into wait...\n", my_id);
pthread_cond_wait(&count_threshold_cv, &count_mutex);
printf("watch_count(): thread %ld Condition signal received.\n", my_id); printf("watch_count(): thread %ld count now = %d.\n", my_id, count);
pthread_mutex_unlock(&count_mutex);
}
pthread_exit(NULL);
} int main(int argc, char *argv[]) {
int i;
long t1 = 1, t2 = 2, t3 = 3;
pthread_t threads[3];
pthread_attr_t attr; /*初始化相互排斥量和条件变量对象*/
pthread_mutex_init(&count_mutex, NULL);
pthread_cond_init(&count_threshold_cv, NULL); /*创建线程时设为可连接状态。便于移植*/
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
pthread_create(&threads[0], &attr, watch_count, (void *) t1);
sleep(1);
pthread_create(&threads[1], &attr, inc_count, (void *) t2);
pthread_create(&threads[2], &attr, inc_count, (void *) t3); /* 等待全部线程完毕*/
for (i = 1; i < NUM_THREADS; i++) {
pthread_join(threads[i], NULL);
}
/*发送信号给监听线程*/
pthread_cond_signal(&count_threshold_cv);
pthread_join(threads[0],NULL);
printf("Main(): Waited on %d threads. Final value of count = %d. Done.\n",
NUM_THREADS, count); /*清除并退出 */
pthread_attr_destroy(&attr);
pthread_mutex_destroy(&count_mutex);
pthread_cond_destroy(&count_threshold_cv);
pthread_exit(NULL);
}
运行结果例如以下:
Starting watch_count(): thread 1
watch_count(): thread 1 going into wait...
inc_count(): thread 3, count = 1 Threshold reached. Just sent signal.
inc_count(): thread 3, count = 1, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 1.
watch_count(): thread 1 going into wait...
inc_count(): thread 2, count = 2 Threshold reached. Just sent signal.
inc_count(): thread 2, count = 2, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 2.
watch_count(): thread 1 going into wait...
inc_count(): thread 3, count = 3 Threshold reached. Just sent signal.
inc_count(): thread 3, count = 3, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 3.
watch_count(): thread 1 going into wait...
inc_count(): thread 2, count = 4 Threshold reached. Just sent signal.
inc_count(): thread 2, count = 4, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 4.
watch_count(): thread 1 going into wait...
inc_count(): thread 3, count = 5 Threshold reached. Just sent signal.
inc_count(): thread 3, count = 5, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 5.
watch_count(): thread 1 going into wait...
inc_count(): thread 2, count = 6 Threshold reached. Just sent signal.
inc_count(): thread 2, count = 6, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 6.
watch_count(): thread 1 going into wait...
inc_count(): thread 3, count = 7, unlocking mutex
inc_count(): thread 2, count = 8, unlocking mutex
inc_count(): thread 3, count = 9, unlocking mutex
inc_count(): thread 2, count = 10, unlocking mutex
watch_count(): thread 1 Condition signal received.
watch_count(): thread 1 count now = 10.
Main(): Waited on 3 threads. Final value of count = 10. Done.
两个地方须要注意一下:
1.)pthread_cond_wait()有解锁和锁定相互排斥量的操作,它所进行的操作大体有三步:解锁—堵塞监听—锁定,所以在监听线程的循环体里面有两次“锁定-解锁”的操作;
2.)主函数main最后的pthread_cond_signal()这句不可缺少,由于监听线程运转没有延时,在count的值达到COUNT_LIMIT-1时。已经处于waiting状态。
多线程环境
可重入函数
假设一个函数能被多个线程同一时候调用且不发生竞态条件,则我们称它是线程安全的。或者说它是可重入的。Linux库函数仅仅有一小部分是不可重入的,这些函数之所以不可重入。主要由于内部使用了静态变量。只是Linux对非常多不可重入的库函数提供了相应的可重入版本号。这些可重入版本号的函数名是在原函数名尾加上_r。在多线程程序中调用库函数,一定要使用其可重入版本号,否则可能导致预想不不到的结果。
线程和进程
假设一个线程程序的某个线程调用了fork函数,那么新创建的子进程是否创建和父进程同样数量的线程呢?答案是否,子进程仅仅拥有一个运行线程,它是调用fork的那个线程的完整复制。
而且子进程将自己主动继承父进程中相互排斥锁(条件变量与之类似)的状态。也就是说,父进程中已经被加锁的相互排斥锁在子进程中也是被锁住的。这就引起了一个问题:子进程可能不清楚从父进程继承而来的相互排斥锁的详细状态。
这个相互排斥锁可能被加锁了,但并非由调用fork函数的那个线程锁住的,而是由其它现成锁住的。假设是这样的情况,则子进程若再次对该相互排斥锁运行加锁操作就会导致死锁。
例如以下代码清单展示在多线程中调用fork函数引起了死锁的样例。
#include <pthread.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <wait.h> pthread_mutex_t mutex; void* another( void* arg )
{
printf( "in child thread, lock the mutex\n" );
pthread_mutex_lock( &mutex );
sleep( 5 );
pthread_mutex_unlock( &mutex );
} void prepare()
{
pthread_mutex_lock( &mutex );
} void infork()
{
pthread_mutex_unlock( &mutex );
} int main()
{
pthread_mutex_init( &mutex, NULL );
pthread_t id;
pthread_create( &id, NULL, another, NULL );
//pthread_atfork( prepare, infork, infork );
sleep( 1 );
int pid = fork();
if( pid < 0 )
{
pthread_join( id, NULL );
pthread_mutex_destroy( &mutex );
return 1;
}
else if( pid == 0 )
{
printf( "I anm in the child, want to get the lock\n" );
pthread_mutex_lock( &mutex );
printf( "I can not run to here, oop...\n" );
pthread_mutex_unlock( &mutex );
exit( 0 );
}
else
{
pthread_mutex_unlock( &mutex );
wait( NULL );
}
pthread_join( id, NULL );
pthread_mutex_destroy( &mutex );
return 0;
}
只是,pthread提供了一个专门的函数pthread_atfork,以确保fork调用父进程和子进程都拥有一个清楚的锁状态。该函数的定义例如以下:
#include <pthread.h>
int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void));
该函数将建立3个fork句柄来帮组我们清理相互排斥锁的状态。
prepare句柄将在fork调用创建子进程之前被运行。它能够用来锁住全部父进程中的相互排斥锁。parent句柄则是fork调用创建出子进程之后,而fork返回之前,在父进程中被运行。
它的作用是释放全部在prepare句柄中被锁住的相互排斥锁。child句柄是fork返回之前。在子进程之中被运行。和parent句柄一样。child句柄也是用于释放全部在prepare句柄中被锁住的相互排斥锁。该函数成功时返回0,失败时返回错误码。
因此,假设要让上面程序清单正常工作,就应该在当中的fork调用前增加例如以下代码:
void nprepare()
{
pthread_mutex_lock(&mutex);
}
void infork()
{
pthread_mutex_unlock(&mutex);
}
pthread_atfork(prepare, infork, infork);
线程与信号
每一个线程都能够独立地设置信号掩码,在多线程环境下使用例如以下函数设置线程信号掩码:
#include <signal.h>
int pthread_sigmask(int how, const sigset_t *set, sigset_t *oldset);
该函数与sigprocmask參数全然同样,不在累赘。
pthread_sigmask成功时返回0,失败时返回错误码。
因为进程中的全部线程共享该进程的信号,所以线程库将依据线程掩码决定把信号发送给哪个详细的线程。因此,假设我们在每一个子线程中都单独设置信号掩码,就非常easy导致逻辑错误。
此外,全部线程共享信号处理函数。也就是说当我们在一个线程中设置了某个信号的信号处理函数后,它将覆盖其它线程为同一个信号设置的信号处理函数。这两点都说明。我们应该定义一个专门的线程来处理全部的信号。
这能够通过下面两个步骤实现:
1) 在主线程创建出其它子线程之前就调用pthread_sigmask来设置好信号掩码。全部新创建的子线程都将自己主动继承这个信号掩码。
这样做之后,实际上全部线程都不会响应被屏蔽的信号了。
2) 在某个线程中调用例如以下函数来等待信号并处理之
#include <signal.h>
int sigwait(const sigset_t *set, int *sig);
set參数指定须要等待的信号的集合。
我们能够简单地将其指定为第1步中创建的信号掩码,表示在该线程中等待全部被屏蔽的信号。
參数sig指向的整数用于存储该函数返回的信号值。
sigwait函数会自己主动取消信号集的堵塞状态,直到有新的信号被递送。
在返回前。sigwwait将恢复线程信号的屏蔽字。sigwait成功时返回0,失败则返回错误码。一旦sigwait正确返回,我们就能够对接收到的信号做处理了。
非常显然。假设我们使用了sigwait,就不应该再为信号设置信号处理函数了。
这是由于当程序猿接收到信号时。二者中仅仅能有一个起作用。
例如以下代码展示了怎样通过上述两个步骤实如今一个线程中允许处理全部信号:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <errno.h> #define handle_error_en(en, msg) \
do { errno = en; perror(msg); exit(EXIT_FAILURE); } while (0) static void * sig_thread(void *arg)
{
int s, sig;
sigset_t *set = (sigset_t *) arg; for (;;) {
//第二个步骤。调用sigwait等待信号
s = sigwait(set, &sig);
if (s != 0)
handle_error_en(s, "sigwait");
printf("Signal handling thread got signal %d\n", sig);
}
} int main(int argc, char *argv[])
{
pthread_t thread;
sigset_t set;
int s; //第一个步骤,在主线程中设置信号掩码
sigemptyset(&set);
sigaddset(&set, SIGQUIT);
sigaddset(&set, SIGUSR1);
s = pthread_sigmask(SIG_BLOCK, &set, NULL);
if (s != 0)
handle_error_en(s, "pthread_sigmask"); s = pthread_create(&thread, NULL, &sig_thread, (void *) &set);
if (s != 0)
handle_error_en(s, "pthread_create");
pause();
}
最后,pthread还提供了以下的方法,使得我们能够明白地将一个信号发送给指定的线程:
#include <signal.h>
int pthread_kill(pthread_t thread, int sig);
当中,pthread參数指定目标线程。sig參数指定待发送的信号。假设sig为0,则pthread_kill不发送信号,但它仍然会运行错误检查。我们能够利用这样的方式检測目标线程是否存在。
pthread_kill成功时返回0,失败时返回错误代码。
Linux高性能server编程——多线程编程(下)的更多相关文章
- Linux高性能server规划——多线程编程(在)
多线程编程 Linux主题概述 线程模型 线程是程序中完毕一个独立任务的完整执行序列.即一个可调度的实体. 依据执行环境和调度者的身份.线程可分为内核线程和用户线程.内核线程,在有的系统上也称为LWP ...
- Linux高性能server规划——多进程编程
多进程编程 多进程编程包含例如以下内容: 复制进程影映像的fork系统调用和替换进程映像的exec系列系统调用. 僵尸进程以及怎样避免僵尸进程 进程间通信(Inter-Process Communic ...
- Linux 高性能服务器编程——多线程编程
问题聚焦: 在简单地介绍线程的基本知识之后,主要讨论三个方面的内容: 1 创建线程和结束线程: 2 读取和设置线程属性: 3 线程同步方式:POSIX信号量,互斥锁和条件变量 ...
- Linux系统编程@多线程编程(一)
多线程编程 涉及操作系统原理概念 时间片 进程状态 上下文: 对进程来说,就是进程的执行环境,具体就是各个变量和数据,包括所有的寄存器变量.打开的文件.内存信息等. 进程的写时复制:由于一般 fork ...
- Linux高性能server编程——Linux网络基础API及应用
Linux网络编程基础API 具体介绍了socket地址意义极其API,在介绍数据读写API部分引入一个有关带外数据发送和接收的程序,最后还介绍了其它一些辅助API. socket地址API 主 ...
- Linux高性能server编程——信号及应用
信号 信号是由用户.系统或者进程发送给目标进程的信息.以通知目标进程某个状态的改变或系统异常. Linux信号可由例如以下条件产生: 对于前台进程.用户能够通过输入特殊的终端字符来给它发送信号. ...
- Linux高性能server编程——I/O复用
IO复用 I/O复用使得程序能同一时候监听多个文件描写叙述符.通常网络程序在下列情况下须要使用I/O复用技术: client程序要同一时候处理多个socket client程序要同一时候处理用户 ...
- Linux高性能server编程——定时器
版权声明:本文为博主原创文章.未经博主允许不得转载. https://blog.csdn.net/walkerkalr/article/details/36869913 定时器 服务器程序通常管 ...
- Linux 高性能server编程——高级I/O函数
重定向dup和dup2函数 #include <unistd.h> int dup(int file_descriptor); int dup2(int file_descriptor_o ...
随机推荐
- 简单的文件上传html+ashx
前台页面:<form action="upload.ashx" method="post" enctype="multipart/form-da ...
- mysql数据库表迁移
@ 把老数据库中的某个表倒出成sql文件 $mysqldump -uroot -p123456 my_db > my_db.sql (输入密码) @ 在新环境中导入 $sudo apt-get ...
- Tasker to detect application running in background
We used to be told that tasker is only capable of detecting foreground application, if the app gets ...
- GDB 调试PYTHON
http://www.cnblogs.com/dkblog/p/3806277.html
- 算法:冒泡排序(Bubble Sort)、插入排序(Insertion Sort)和选择排序(Selection Sort)总结
背景 这两天温习了 5 中排序算法,之前也都看过它们的实现,因为没有深入分析的缘故,一直记不住谁是谁,本文就记录一下我学习的一些心得. 三种排序算法可以总结为如下: 都将数组分为已排序部分和未排序部分 ...
- remotepath != null 与 !TextUtils.isEmpty(remotepath) 的差别
remotepath != null 与 !TextUtils.isEmpty(remotepath) 的差别 !TextUtils.isEmpty(remotepath) 与 remo ...
- mysql数据库字符集初步理解
1.MySQL(4.1以后版本) 服务器中有六个关键位置使用了字符集的概念,他们是: 1.client 2.connection 3.database 4.results 5.server 6.sys ...
- 转: 用 Go 写一个轻量级的 ldap 测试工具
前言 这是一个轮子. 作为一个在高校里混的 IT,LDAP 我们其实都蛮熟悉的,因为在高校中使用 LDAP 来做统一认证还蛮普遍的.对于 LDAP 的管理员而言,LDAP 的各种操作自然有产品对应的管 ...
- 使用web.xml方式加载Spring时,获取Spring context的两种方式
使用web.xml方式加载Spring时,获取Spring context的两种方式: 1.servlet方式加载时: [web.xml] <servlet> <servlet-na ...
- 《Unix内核源码剖析》
<Unix内核源码剖析> 基本信息 作者: (日)青柳隆宏 译者: 殷中翔 丛书名: 图灵程序设计丛书 出版社:人民邮电出版社 ISBN:9787115345219 上架时间:2014-2 ...