1
vote
2answers
38 views
Explain the Need for Mutexes in Locales, Please
Reading the question Why doesn’t C++ STL support atoi(const string& ) like functions?, I encountered a comment which warned that GCC (at least) has a bug that can slow down mul …
3
votes
2answers
105 views
Question about mutexes and locks
Are the two code samples below equivalent?
Poco::ProcessHandle::PID ProcessRunner::processId() const
{
Poco::ProcessHandle::PID pid = 0;
mMutex.lock();
pid = mPID;
…
3
votes
3answers
222 views
Mutex in shared memory
Suppose a process is creating a mutex in shared memory and locking it and dumps core. Now in another process how do i ensure that mutex is already locked but not owned by any proce …
0
votes
3answers
37 views
Bring window to foreground after Mutex fails
Hi, i was wondering if someone can tell me what would be the best way to bring my application to the foreground if a mutex was not able to be created for a new instance.
Eg - Appl …
0
votes
1answer
17 views
Does pthreads support a method for querying the “lock count” of a recursive mutex?
Does pthreads support any method that allows you to query the number of times a recursive mutex has been locked?
3
votes
3answers
59 views
How are mutex and lock structures implemented?
I understand the concept of locks, mutex and other synchronization structures, but how are they implemented? Are they provided by the OS, or are these structures dependent on spec …
5
votes
5answers
183 views
does presence of mutex helps getting rid of volatile key word ?
Hi ,
I have a multi-R/W lock class that keeps the read, write and pending read , pending write counters. A mutex guards them from multiple threads.
My question is Do we still ne …
3
votes
5answers
224 views
Are mutexes really slower ?
I have read so many times, here and everywhere on the net, that mutexes are slower than critical section/semaphores/insert-your-preferred-synchronisation-method-here. but i have n …
1
vote
3answers
72 views
Implementing a Priority queue with a Conditional Variable in C
My current understanding of conditional variables is that all blocked (waiting) threads are inserted into a basic FIFO queue, the first item of which is awakened when signal() is c …
1
vote
3answers
81 views
Multi-threaded BASH programming - generalized method?
Ok, I was running POV-Ray on all the demos, but POV's still single-threaded and wouldn't utilize more than one core. So, I started thinking about a solution in BASH.
I wrote a ge …
0
votes
4answers
47 views
pthreads : pthread_cond_signal() from within critical section
I have the following piece of code in thread A, which blocks using pthread_cond_wait()
pthread_mutex_lock(&my_lock);
if ( false == testCondition )
pthread_c …
0
votes
6answers
80 views
How To Mutex Across a Network?
I have a desktop application that runs on a network and every instance connects to the same database.
So, in this situation, how can I implement a mutex that works across all runn …
3
votes
4answers
137 views
When are lock free data structures less performant than mutual exclusion (mutexes)?
I read somewhere (can't find the page anymore) that lock free data structures are more efficient "for certain workloads" which seems to imply that sometimes they're actually slower …
1
vote
1answer
50 views
Are “benaphores” worth implementing on modern OS’s?
Hi all,
Back in my days as a BeOS programmer, I read this article by Benoit Schillings, describing how to create a "benaphore": a method of using atomic variable to enforce a cr …
1
vote
3answers
168 views
Mutex lock on write only
I have a multithreaded C++ application which holds a complex data structure in memory (cached data).
Everything is great while I just read the data. I can have as many threads as …
