LV6 day10 线程池及GDB调试

线程池概念和使用
概念:
通俗的讲就是一个线程的池子,可以循环的完成任务的一组线程集合
必要性:
我们平时创建一个线程,完成某一个任务,等待线程的退出。但当需要创建大量的线程时,假设T1为创建线程时间,T2为在线程任务执行时间,T3为线程销毁时间,当 T1+T3 > T2,这时候就不划算了,使用线程池可以降低频繁创建和销毁线程所带来的开销,任务处理时间比较短的时候这个好处非常显著。
线程池的基本结构:
1 任务队列,存储需要处理的任务,由工作线程来处理这些任务
2 线程池工作线程,它是任务队列任务的消费者,等待新任务的信号
线程池的实现:
1创建线程池的基本结构:
任务队列链表
typedef struct Task;
线程池结构体
typedef struct ThreadPool;
2.线程池的初始化:
pool_init()
{
创建一个线程池结构
实现任务队列互斥锁和条件变量的初始化
创建n个工作线程
}
3.线程池添加任务
pool_add_task
{
判断是否有空闲的工作线程
给任务队列添加一个节点
给工作线程发送信号newtask
}
4.实现工作线程
workThread
{
while(1){
等待newtask任务信号
从任务队列中删除节点
执行任务
}
}
5.线程池的销毁
pool_destory
{
删除任务队列链表所有节点,释放空间
删除所有的互斥锁条件变量
删除线程池,释放空间
}
编译错误:
error: ‘ThreadPool {aka struct ThreadPool}’ has no member named ‘head’
意义:ThreadPool 结构体没有head这个成员。
解决:检查是否拼写错误。
error: too few arguments to function ‘pthread_mutex_init’
意思:pthread_mutex_init这个函数参数少了
解决:检查函数的参数,添加对应的参数

线程的GDB调试:

显示线程
info thread
切换线程
thread id
GDB为特定线程设置断点
break location thread id
GDB设置线程锁,
set scheduler-locking on/off
on:其他线程会暂停。可以单独调试一个线程

#include <stdio.h>
#include<pthread.h>
#include<unistd.h>
#include<stdlib.h>
#define pool_num 10
typedef struct task{
	void *(*func)(void *arg);
	void *arg;
	struct task *next;
}task;

typedef struct threadpool{
	pthread_mutex_t tasklock;
	pthread_cond_t newtask;
	
	pthread_t tid[pool_num];
	task *queue_head;
	int busywork;
}threadpool;

threadpool *pool;
void *workthread(void *arg){

	while(1){
	pthread_mutex_lock(&pool->tasklock);
	pthread_cond_wait(&pool->newtask,&pool->tasklock);

	task *ptask=pool->queue_head;
	pool->queue_head=pool->queue_head->next;

	pthread_mutex_unlock(&pool->tasklock);
	
	ptask->func(ptask->arg);
	pool->busywork--;
	}



}
void *realwork(void *arg){

	printf("finish work %d\n",(int)arg);


}
void pool_add_task(int arg){
	task *newtask;
	pthread_mutex_lock(&pool->tasklock);
	while(pool->busywork>=pool_num)
	{
		pthread_mutex_unlock(&pool->tasklock);
		usleep(10000);
		pthread_mutex_lock(&pool->tasklock);
	}
	pthread_mutex_unlock(&pool->tasklock);


	newtask=malloc(sizeof(task));
	newtask->func=realwork;
	newtask->arg=arg;
	
	pthread_mutex_lock(&pool->tasklock);
	task *member=pool->queue_head;
	if(member==NULL){
	pool->queue_head=newtask;
	}else{
		while(member->next!=NULL){//遍歷鏈表
		member=member->next;
		
		}
		member->next=newtask;//新任務放到鏈表尾部
	}
	pool->busywork++;
	pthread_cond_signal(&pool->newtask);
	pthread_mutex_unlock(&pool->tasklock);
}


void pool_init(){
	pool=malloc(sizeof(threadpool));
	pthread_mutex_init(&pool->tasklock,NULL);
	pthread_cond_init(&pool->newtask,NULL);
	pool->queue_head=NULL;
	pool->busywork=0;
	for(int i=0;i<pool_num;i++){

	pthread_create(&pool->tid[i],NULL,workthread,NULL);


	}

}
void pool_destory(){
	task *head;
	while(pool->queue_head!=NULL){
	
		head=pool->queue_head;
		pool->queue_head=pool->queue_head->next;
		free(head);

	}
	pthread_mutex_destroy(&pool->tasklock);
	pthread_cond_destroy(&pool->newtask);
	free(pool);


}
int main(int argc, char *argv[])
{
	pool_init();
	sleep(1);
	for(int i=1;i<=20;i++){
	pool_add_task(i);

	}

	sleep(5);
	pool_destory();
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值