Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

16
votes
6answers
5k views

Why do pthreads’ condition variable functions require a mutex?

I’m reading up on pthread.h; the condition variable related functions (like pthread_cond_wait(3)) require a mutex as an argument. Why? As far as I can tell, I’m going to be creating a mutex just to ...
8
votes
2answers
650 views

Calling pthread_cond_signal without locking mutex

I read somewhere that we should lock the mutex before calling pthread_cond_signal and unlock the mutext after calling it: The pthread_cond_signal() routine is used to signal (or wake up) another ...
8
votes
2answers
345 views

Do condition variables still need a mutex if you're changing the checked value atomically?

Here is the typical way to use a condition variable: // The reader(s) lock(some_mutex); if(protected_by_mutex_var != desired_value) some_condition.wait(some_mutex); unlock(some_mutex); // The ...
6
votes
1answer
247 views

How To Use Condition Variable

The Linux Programming Interface book has a piece of code (producer/consumer) to show how condition variable works: static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t cond = ...
6
votes
2answers
153 views

Why do condition variables sometimes erroneously wake up?

I've known for eons that the way you use a condition variable is lock while not task_done wait on condition variable unlock Because sometimes condition variables will spontaneously wake. But ...
6
votes
4answers
1k views

What is the consensus number for semaphores?

(I think that) the consensus number for a mutex is 2. What is the consensus number for semaphores (like in pthread_sem_*)? What is the consensus number for condition variables (like in ...
5
votes
3answers
217 views

When can a cond var be used to synchronize its own destruction/unmapping?

According to POSIX, It shall be safe to destroy an initialized condition variable upon which no threads are currently blocked. Further, the signal and broadcast operations are specified to ...
5
votes
1answer
274 views

What is the fastest race free method for polling a lockless queue?

Say we have a single-producer-thread single-consumer-thread lockless queue, and that the producer may go long periods without producing any data. It would be beneficial to let the consumer thread ...
5
votes
6answers
1k views

What are common uses of condition variables in C++?

I'm trying to learn about condition variables. I would like to know what are the common situations where condition variables are used. One example is in a blocking queue, where two threads access the ...
5
votes
2answers
3k views

Using condition variable in a producer-consumer situation

I'm trying to learn about condition variables and how to use it in a producer-consumer situation. I have a queue where one thread pushes numbers into the queue while another thread popping numbers ...
5
votes
3answers
98 views

How to connect signals into complex circuits in .NET?

For some concurrent code, I want to connect a bunch of signals together like a circuit. In .NET we can do a WaitAll or WaitAny on a collection of signals. I want to do something like this: WaitAny ( ...
4
votes
2answers
3k views

Differences between Conditional variables, Mutexes and Locks

For example the c++0x interfaces I am having a hard time figuring out when to use which of these things (cv, mutex and lock). Can anyone please explain or point to a resource? thanks in regard
3
votes
2answers
110 views

Whats the difference between std::condition_variable and std::condition_variable_any?

I'm probably missing something obvious, but I can't see any difference between between std::condition_variable and std::condition_variable_any. Why do we need both?
3
votes
2answers
230 views

Condition variables

I noticed that when I'm performing a wait operation on a condition variable, it immediately returns. The consequence is that, when executing the following dummy code, 100% of one CPU is being used in ...
3
votes
2answers
204 views

Signalling a condition variable (pthreads)

Suppose some condition variable "cond" is associated with a mutex variable "mutex". If a thread is sleeping on cond after calling pthread_cond_wait(&cond,&mutex), and another thread that has ...
2
votes
1answer
64 views

What's the difference between notify_all() and notify_one() of std::condition_variable?

Currently, I am implementing a multi-thread project using std::thread in C++11. I use std::condition_variable to synchronize threads. In detail, one consumer function calls wait() member function of ...
2
votes
4answers
70 views

Simple Generator-monitor program with condition variables

I created a simple program that uses condition variables to create synchronization between two threads. I'm getting a strange output that I cannot seem to find the solution to. What the program ...
2
votes
2answers
82 views

Is this usage of condition variables ALWAYS subject to a lost-signal race?

Suppose a condition variable is used in a situation where the signaling thread modifies the state affecting the truth value of the predicate and calls pthread_cond_signal without holding the mutex ...
2
votes
1answer
242 views

Year is out of valid range when passing pos_infin as timeout to timed_wait

The following code reproduces the error: #include <iostream> #include "boost/thread.hpp" #include "boost/date_time/posix_time/ptime.hpp" int main() { boost::condition_variable_any cv; ...
2
votes
2answers
873 views

Is there an alternative to the threading.Condition variables in python that better support timeouts without polling?

I'm using condition variables in threads that require a timeout. I didn't notice until I saw the CPU usage when having a lot of threads running, that the condition variable provided in the threading ...
2
votes
3answers
2k views

POSIX Threads: Condition Variables - what's the point?

I've been working with pthreads a fair bit recently and there's one little thing I still don't quite get. I know that condition variables are designed to wait for a specific condition to come true (or ...
2
votes
3answers
546 views

Guaranteed yielding with pthread_cond_wait and pthread_cond_signal

Assuming I have a C program with 3 POSIX threads, sharing a global variable, mutex, and condition variable, two of which are executing the following psuedocode: ...process data... pthread_mutex_lock( ...
1
vote
0answers
100 views

boost interprocess shared mutex and boost interprocess condition variable for shared mutex

Boost version - 1.47 I can not find boost::interprocess::interprocess_sharable_mutex, but it looks like it is forward declared. Is this really supported ? I can see that ...
1
vote
1answer
78 views

Breaking a condition variable deadlock

I have a situation where thread 1 is waiting on a condition variable A, which should be woken up by thread 2. Now thread 2 is waiting on a condition variable B , which should be woken up by thread 1. ...
1
vote
3answers
171 views

What happens to a thread that got woken up by pthread_cond_signal() but lost competition for a mutex

Regarding this: How To Use Condition Variable Say we have number of consumer threads that execute such code (copied from the referenced page): while (TRUE) { s = pthread_mutex_lock(&mtx); ...
1
vote
3answers
124 views

What are the costs of a condition variable?

Assume that unused execution resources are available on the machine in question, i.e. not all CPUs are being utilized. If a thread is waiting on a condition variable, what are the costs associated ...
1
vote
2answers
259 views

How can you implement a condition variable using semaphores?

A while back I was thinking about how to implement various synchronization primitives in terms of one another. For example, in pthreads you get mutexes and condition variables, and from these can ...
1
vote
2answers
226 views

What if the system time changes while I'm doing timed_wait with a duration?

When using timed_wait on a boost::condition_variable with a duration, will the wait condition time out after the duration even if the user (or ntp) changes the system time? E.g., ...
1
vote
1answer
235 views

Multi-threaded code and condition variable usage

A multi-threaded piece of code accesses a resource (eg: a filesystem) asynchronously. To achieve this, I'll use condition variables. Suppose the FileSystem is an interface like: class FileSystem { ...
1
vote
4answers
241 views

concurrent threads in C programming

I have encountered a problem while implementing wait and signal conditions on multiple threads. A thread needs to lock a mutex and wait on a condition variable until some other thread signals it. In ...
1
vote
3answers
643 views

Implementing a Priority queue with a Condition Variable in C

My current understanding of condition variables is that all blocked (waiting) threads are inserted into a basic FIFO queue, the first item of which is awakened when signal() is called. Is there any ...
1
vote
3answers
829 views

How can I implement java-like synchronization (monitors) using the Win32 API?

Each Java object (and its class) has an associated monitor. In pthread terms a Java monitor is equivalent to the combination of a reentrant mutex and a condition variable. For locking, the Win32 API ...
0
votes
2answers
55 views

Deferred bcast wakeup for condition variables - is it valid?

I'm implementing pthread condition variables (based on Linux futexes) and I have an idea for avoiding the "stampede effect" on pthread_cond_broadcast with process-shared condition variables. For ...
0
votes
1answer
418 views

Usage example of boost::condition::timed_wait

Does someone have an example of how to most easily use boost::condition::timed_wait? There are some threads on the topic here, here and here, but none feature a working example. And boost doc is as ...
0
votes
2answers
127 views

Does a Python threading.Condition.wait() suspend execution immedeatly?

Like title says, if I call wait() on a python condition variable, does the calling thread suspend execution and yield or does it keep blocking until the next context switch? Thanks for your time,
0
votes
0answers
126 views

mutex and condition variable implementation using futex

I have implemented mutex and contition variables using futex syscall. I believe that my implementation is correct, but would like it to be verified by some one else. If some of you could verify its ...
0
votes
2answers
36 views

Signalling a particular thread among many waiting on a condition variable

This question follows from Breaking a condition variable deadlock. A number of threads may be waiting on a condition variable, I need to signal only a particular thread say thread 1 and kill it as it ...
0
votes
4answers
117 views

CONDITION_VARIABLE in windows; wont compile

I am trying to make a windows-version of a program written for linux, in c++. For the program to be thread-safe, I use pthread_cond_t and pthread_cond_wait in the Linux version. These functions use a ...
0
votes
2answers
245 views

C++: thread sync

I am trying to synchronize two thread (working on the same C++ map) using the Boost library. I must tell that I am not an expert in C++ and I find the boost documentation quite hard to understand. ...
0
votes
2answers
638 views

Windows Condition Variable vs. Event

We can use either the new condition variable primitive or windows event in order to synchronize threads in WinNT v6.x or later. Consider the following two approaches, we want workers to run at the ...
0
votes
1answer
129 views

Null arguments to pthread_cond_wait

If a thread calls pthread_cond_wait(cond_ptr,mutex_ptr) will a null cond_ptr, is it guaranteed to not fall asleep? According to ...
0
votes
1answer
232 views

Problem waking up multiple threads using condition variable API in win32

I have a problem in understanding how the winapi condition variables work. On the more specific side, what I want is a couple of threads waiting on some condition. Then I want to use the ...
0
votes
3answers
243 views

How to multi-thread this?

I wish to have two threads. The first thread1 occasionally calls the following pseudo function: void waitForThread2() { if (thread2 is not idle) { return; } notifyThread2IamReady(); // ...
0
votes
1answer
191 views

How can I improve my real-time behavior in multi-threaded app using pthreads and condition variables?

I have a multi-threaded application that is using pthreads. I have a mutex() lock and condition variables(). There are two threads, one thread is producing data for the second thread, a worker, ...