forked from tinylcy/vino
-
Notifications
You must be signed in to change notification settings - Fork 1
/
threadpool.h
46 lines (38 loc) · 1012 Bytes
/
threadpool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _THREAD_POOL_H
#define _THREAD_POOL_H
#endif
#include <pthread.h>
typedef void* (*callback_func)(void *);
/*
* each job corresponding to each HTTP request
*/
typedef struct job {
callback_func p_callback_func;
void *arg;
struct job *next;
} job_t;
typedef struct threadpool {
int thread_num; // thread_num is the number of threads in threadpool
int job_max_num; // the max number of jobs in threadpool
int job_cur_num; // the current number of thread in threadpool
job_t *head;
job_t *tail;
pthread_t *pthreads;
pthread_mutex_t mutex;
pthread_cond_t queue_empty;
pthread_cond_t queue_not_empty;
pthread_cond_t queue_not_full;
} threadpool_t;
void *threadpool_function(void *arg);
/*
* initialize the threadpool
*/
threadpool_t *threadpool_init(int thread_num, int job_max_num);
/*
* add one job into threadpool
*/
int threadpool_add_job(threadpool_t *pool, callback_func p_callback_func, void *arg);
/*
* destroy the threadpool
*/
int threadpool_destroy(threadpool_t *pool);