c:c_threads:event_handling
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
c:c_threads:event_handling [2021/03/05 19:48] – created peter | c:c_threads:event_handling [2021/06/09 11:04] (current) – peter | ||
---|---|---|---|
Line 3: | Line 3: | ||
To have a thread wait for an event to happen like a condition to become true or a task to be completed by another thread. | To have a thread wait for an event to happen like a condition to become true or a task to be completed by another thread. | ||
- | Say 2 threads: | + | ---- |
- | * thread1 performs some actions, then sets a flag. | + | ===== Option 1 - Use a boolean global variable ===== |
- | | + | |
+ | Two threads: | ||
+ | |||
+ | - thread1 performs some actions, then sets a flag. | ||
+ | | ||
<code cpp> | <code cpp> | ||
Line 23: | Line 27: | ||
m_bDataLoaded = false; | m_bDataLoaded = false; | ||
} | } | ||
+ | | ||
void loadData() | void loadData() | ||
{ | { | ||
Line 75: | Line 80: | ||
</ | </ | ||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * Thread will keep on acquiring the lock and releasing it just to check the value, therefore it will consume CPU cycles and will also make Thread 1 slow, because it needs to acquire same lock to update the bool flag. | ||
+ | |||
+ | A better choice is to use Condition Variables; which is a kind of Event used for signaling between two or more threads. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Option 2 - Using a Condition Variable ===== | ||
+ | |||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include < | ||
+ | #include < | ||
+ | #include < | ||
+ | #include < | ||
+ | |||
+ | using namespace std:: | ||
+ | |||
+ | class Application | ||
+ | { | ||
+ | std::mutex m_mutex; | ||
+ | std:: | ||
+ | bool m_bDataLoaded; | ||
+ | |||
+ | public: | ||
+ | Application() | ||
+ | { | ||
+ | m_bDataLoaded = false; | ||
+ | } | ||
+ | |||
+ | void loadData() | ||
+ | { | ||
+ | // Make This Thread sleep for 1 Second. | ||
+ | std:: | ||
+ | std:: | ||
+ | |||
+ | // Lock The Data structure. | ||
+ | std:: | ||
+ | |||
+ | // Set the flag to true, means data is loaded. | ||
+ | m_bDataLoaded = true; | ||
+ | |||
+ | // Notify the condition variable. | ||
+ | m_condVar.notify_one(); | ||
+ | } | ||
+ | | ||
+ | bool isDataLoaded() | ||
+ | { | ||
+ | return m_bDataLoaded; | ||
+ | } | ||
+ | | ||
+ | void mainTask() | ||
+ | { | ||
+ | std:: | ||
+ | | ||
+ | // Acquire the lock | ||
+ | std:: | ||
+ | | ||
+ | // Start waiting for the Condition Variable to get signaled | ||
+ | // Wait() will internally release the lock and make the thread to block | ||
+ | // As soon as condition variable get signaled, resume the thread and | ||
+ | // again acquire the lock. Then check if condition is met or not | ||
+ | // If condition is met then continue else again go in wait. | ||
+ | m_condVar.wait(mlock, | ||
+ | std:: | ||
+ | } | ||
+ | }; | ||
+ | |||
+ | |||
+ | int main() | ||
+ | { | ||
+ | Application app; | ||
+ | std::thread thread_1(& | ||
+ | std::thread thread_2(& | ||
+ | thread_2.join(); | ||
+ | thread_1.join(); | ||
+ | return 0; | ||
+ | } | ||
+ | </ |
c/c_threads/event_handling.1614973691.txt.gz · Last modified: 2021/03/05 19:48 by peter