i have learned that pthread condition variables provides the facility to replace polling. Without condition variables, the programmer would need to have threads continually polling (possibly in a critical section), to check if the condition is met. This can be very resource consuming since the thread would be continuously busy in this activity. A condition variable is a way to achieve the same goal without polling. But why in the code i need to check a variable continuously whether i use conditions or not. Then what is the benefit of using the conditional variable?
pthread_mutex_lock(&count_mutex);
while (count<COUNT_LIMIT) {
pthread_cond_wait(&count_threshold_cv, &count_mutex);
printf("watch_count(): thread %ld Condition signal received.\n", my_id);
count += 125;
printf("watch_count(): thread %ld count now = %d.\n", my_id, count);
}
pthread_mutex_unlock(&count_mutex);
Now in the above example i see that i need to poll whether i use the condition variable or not. then what is the benefit of condition variable here in the sense that polling is not required? The mutex can achieve the necessary synchronization, with an if(count check.
So, why i will use the conditional variable here to replace polling on a variable? it is still here in use. And why i cannot achieve the same thing here with mutex and a simple if clause? And finally I want to have a clear idea about what problems conditional variables actually solve?