In this project we explore basic Multi-threading in C.
Once the program starts:
-
multiple
Worker
threads are created, the main thread will be theDispatcher
which will read Jobs and store them in a Queue. the Queue is accessible to the worker threads. Each Worker thread reads a job from the queue and executes it. -
Multiple counters will be created in the form of files. the workers' job is to manipulate those counters according to the
jobs list
. -
Mutex is used to protect the counters from being overwritten by multiple threads
-
conditional variables are used to wake up sleeping Worker threads.
worker;repeat 1;increment 5 ;decrement 6 ;msleep 1000
worker;repeat 1;increment 5 ;decrement 6 ;msleep 1000
dispatcher_msleep 1000;
worker;increment 5;;msleep 1000
-
the dispatcher inserts the first two jobs into the Queue, goes to sleep for 1 second and inserts the last job to the queue.
-
as soon as the queue is not empty a worker will read the first job: increment the counter 5 (file #5) and decrement the counter 6 (file #6) and go to sleep for 1 second
-
another worker will read the second line and do the same
-
lastly a worker will increment the counter 5 and go to sleep for 1 second.
- Maximum threads number is 4096
- Maximum counters number is 100
run the following commands:
-
make
-
worker_dispatcher <command file> <#Threads> <#Counters> <log enabled>
for example, if we want 5 worker threads, 10 counters, threads log files, and the commands are specified in test.txt
:
worker_dispatcher test.txt 5 10 1
Without threads log files:
worker_dispatcher test.txt 5 10 0
to clean up after the program finishes running:
make clean