-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
24 lines (19 loc) · 924 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Thread pool library
Architecture of threadpool
Every threadpool is represented by a structure 'struct threadpool'
To create a new threadpool, call threadpool_create function.
This function will perform following operations
- allocate memory for threadpool structure
- initialize different lists maintained by the threadpool
(threads_available, threads_busy, tasks)
- init mutex and conditional variable used to syncronize all threadpool
specific operations
- create a manager thread to manage threadpool operations
- create worker threads, init their own mutex and conditional variables and
add them (created threads) to threads_available list
Following are members of the structure
- threads_available
Threads that are available to accept new tasks
It has a list of worker threads available to accept new tasks
| Threadpool (struct threadpool)
| - Worker Threads (struct threadpool_thread)