Lock Challenge Step 3
Syncmultiplethreadssharingaresource
|
In /Step_3/ directory run make
. Executable will build as Lock.out. To run executable, run ./Lock.out
.
Doxygen documentation is available for this step of the project.
Step 3 main page | ||
---|---|---|
LockGuard.h | Documentation | Code |
main.cpp | Documentation | Code |
main_no_debug.cpp | Documentation | Code |
It produced this output, which matched expectations:
Details about my research into threading and other topics are available here: Reference in Appendix
I wrote three functions to do work, and one overloaded function to facilitate debug. See Reference in Appendix for details. In brief, they are:
Considerations for creating documentation are discussed here: Reference in Appendix
3) Use c++11
std::condition_var
in solution from #3 to synchronize threads-- Psuedo Code --main:1) start: thread 1, thread 2, thread 32) all threads block on condition_signal3) main signals condition_signal4) join all threads to prevent exit main // gimmeethread 1:break from condition_signal due to step 3sleep (random(1,5))signal thread 2wait on condition_signalexample output:main: starting all threadsthread1: starting, waiting.thread2: starting, waiting.thread3: starting, waiting.main: starting thread 1.thread1: signal received, doing work ....thread1: done with work, signal next threadthread2: signal received, doing work ....thread2: done with work, signal next threadon and on and on until you CTRL-C the program
Initially had trouble parsing requirements. Reference in Appendix
Environment remains the same as the previous steps.
Continue needing to refamiliarize myself with C++ after spending large amount of time with C and Python. See Reference in Appendix for details.