Tagged Questions

A mutex ("mutual exclusion") is a mechanism to ensure integrity when the same data or resource is accessed (in particular, changed) concurrently from several threads. Usually when the term mutex is used, it refers to a synchronisation primitive functionally identical to a binary semaphore. As OS-level synchronisation is often rather expensive due to context switching, busy-wait solutions based on atomic operations (e.g. futex or critical section) exist.

learn more… | top users | synonyms

88
votes
19answers
16k views

What is the correct way to create a single instance application?

Using C# and WPF under .net (rather than WindowsForms or console), what is the correct way to create an application that can only be run as a single instance? I know it has something to do with some ...
59
votes
12answers
74k views

Difference between binary semaphore and mutex

Is there any difference between binary semaphore and mutex or they are essentialy same?
58
votes
5answers
10k views

What are the differences between various threading synchronization options in C#?

Can someone explain the difference between: lock (someobject) {} Using Mutex Using Semaphore Using Monitor Using Other .Net synchronization classes I just can't figure it out. It seems to me the ...
53
votes
4answers
10k views

What is a good pattern for using a Global Mutex in C#?

The Mutex class is very misunderstood, and Global mutexes even more so. What is good, safe pattern to use when creating Global mutexes?
36
votes
5answers
24k views

Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)

POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won't deadlock. Of course it also needs to unlock it twice, otherwise no other thread can obtain the ...
35
votes
6answers
5k views

Are Mutexes needed in javascript?

I have seen this link: Implementing Mutual Exclusion in JavaScript. On the other hand, I have read that there are no threads in javascript, but what exactly does that mean? When events occur, where ...
19
votes
7answers
6k views

C#, return statement in a lock procedure, inside or outside?

I just realized that in some place in my code I have the return statement inside the lock and sometime outside. Which one is the best? 1) void example() { lock (mutex) { //... } ...
19
votes
9answers
5k views

What is a mutex?

A mutex is a programming concept that is frequently used to solve multi-threading problems. My question to the community: What is a mutex and how do you use it?
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 ...
16
votes
6answers
685 views

Thread Synchronisation 101

Previously I've written some very simple multithreaded code, and I've always been aware that at any time there could be a context switch right in the middle of what I'm doing, so I've always guarded ...
14
votes
6answers
12k views

Example for boost shared_mutex (multiple reads/one write)?

I have a multithreaded app that has to read some data often, and occasionally that data is updated. Right now a mutex keeps access to that data safe, but it's expensive because I would like multiple ...
14
votes
10answers
4k views

C++ Thread, shared data

I have an application where 2 threads are running... Is there any certanty that when I change a global variable from one thread, the other will notice this change? I don't have any syncronization or ...
13
votes
2answers
720 views

Memory model ordering and visibility?

I tried looking for details on this, I even read the standard on mutexes and atomics... but still I couldnt understand the C++11 memory model visibility guarantees. From what I understand the very ...
13
votes
6answers
5k views

Mutex example / tutorial?

I've noticed that asking questions for the sake of creating a reference list etc. is encouraged in SO. This is one such question, so that anyone Googling for a mutex tutorial will find a good one ...
12
votes
5answers
1k 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 never seen any paper ...
12
votes
10answers
4k views

How do i tell if one instance of my program is running?

How do i tell if one instance of my program is running? i thought i could do this with a data file but it would just be messy :( i want to do this as i only want 1 instance to ever be open at one ...
11
votes
4answers
272 views

Are mutex lock functions sufficient without volatile?

A coworker and I write software for a variety of platforms running on x86, x64, Itanium, PowerPC, and other 10 year old server CPUs. We just had a discussion about whether mutex functions such as ...
11
votes
3answers
11k views

pthreads mutex vs semaphore

What is the difference between semaphores and mutex provided by pthread library ?
11
votes
10answers
831 views

What kind of loop is for (;;)?

Found in torvalds/linux-2.6.git -> kernel/mutex.c line 171 I have tried to find it on Google and such to no avail. What does for (;;) instruct?
11
votes
11answers
2k views

Plural form of word “mutex”

What is the correct plural form of the portmanteau mutex. Is it mutexes or mutices?
10
votes
5answers
1k views

Mutual exclusion and semaphores

I am writing a program (for homework) that simulates a unisex bathroom. Only 4 people are allowed at a time and men and woman cannot enter if the other sex is already using the bathroom. My problem ...
10
votes
3answers
1k views

Do pthread Mutexs work across threads if in shared memory?

I found this: http://stackoverflow.com/questions/2284730/fast-interprocess-synchronization-method I used to believe that a pThread mutex can only be shared between two thraeds in the same address ...
9
votes
7answers
6k views

Is using a Mutex to prevent multipule instances of the same program from running safe?

I'm using this code to prevent a second instance of my program from running at the same time, is it safe? Mutex appSingleton = new System.Threading.Mutex(false, "WinSyncSingalInstanceMutx"); ...
9
votes
4answers
8k views

iPhone use of mutexes with asynchronous URL requests

My iPhone client has a lot of involvement with asynchronous requests, a lot of the time consistently modifying static collections of dictionaries or arrays. As a result, it's common for me to see ...
8
votes
2answers
651 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
7answers
2k views

How to find that Mutex in C# is acquired?

How can I find from mutex handle in C# that a mutex is acquired? When mutex.WaitOne(timeout) timeouts, it returns false. However, how can I find that from the mutex handle? (Maybe using p/invoke.) ...
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 ...
8
votes
6answers
618 views

Are spinlocks a good choice for a memory allocator?

I've suggested to the maintainers of the D programming language runtime a few times that the memory allocator/garbage collector should use spinlocks instead of regular OS critical sections. This ...
7
votes
3answers
233 views

Why to pass mutex as a parameter to a function being called by a thread?

At some places I have seen people creating a thread pool and creating threads and executing a function with those threads. While calling that function boost::mutex is passed by reference. Why it is ...
7
votes
2answers
156 views

Is there a way to make jobs in Jenkins mutually exclusive?

I have a few jobs in Jenkins that use Selenium to modify a database through a website's front end. If some of these jobs run at the same time, errors due to dirty reads can result. Is there a way to ...
7
votes
2answers
136 views

Which of the below Mutex expressions ideally prevents multiple instances of .Net application and what is the difference?

Typically I see these two pieces of code all around. Both works in my case too, but which should I stick to? Case 1: bool isNew = false; Mutex mutex = new Mutex(true, "MyApp_Mutex", out isNew); if ...
7
votes
1answer
264 views

System-wide mutex in Python on Linux

Is there any easy way to have a system-wide mutex in Python on Linux? By "system-wide", I mean the mutex will be used by a group of Python processes; this is in contrast to a traditional mutex, which ...
7
votes
2answers
311 views

Use a mutex as a semaphore?

I need two threads to progress in a "tick tock" pattern. When implmented with a semaphore this looks fine: Semaphore tick_sem(1); Semaphore tock_sem(0); void ticker( void ) { while( true ) { ...
7
votes
1answer
447 views

Ruby Semaphores?

I'm working on an implementation of the "Fair Barbershop" problem in Ruby. This is for a class assignment, but I'm not looking for any handouts. I've been searching like crazy, but I cannot seem to ...
7
votes
3answers
131 views

will goto violate mutexes?

I am doing it wrong, yes? ... if( you_think_youre_genius ) goto goto_sucks: ... pthread_mutex_lock(&mutex); do_stuff(); goto_sucks: do_other_stuff(); ...
7
votes
7answers
962 views

How to implement single instance per machine application?

I have to restrict my .net 4 WPF application so that it can be run only once per machine. Note that I said per machine, not per session. I implemented single instance applications using a simple mutex ...
7
votes
5answers
484 views

Named/System mutex in Java

I'm re-working a Java executable that may be started multiple times, and I want the process to proceed one at a time. In C# I would do this with a named/system Mutex, but this doesn't seem to be ...
7
votes
1answer
131 views

How to get PIDs that are using given file name in C#?

How to get PIDs of processes that are using a given file name and mutex name? (Not by custom kernel driver, but in C# in user mode.) UPDATE: Thanks to Daniel Renshaw I found a script that lists all ...
7
votes
6answers
1k views

C#: How to prevent two instances of an application from doing the same thing at the same time?

If you have two threads within an application, and you don't want them to run a certain piece of code simultaneously, you can just put a lock around the piece of code, like this: lock (someObject) { ...
7
votes
8answers
760 views

Threads and simple Dead lock cure

When dealing with threads (specifically in C++) using mutex locks and semaphores is there a simple rule of thumb to avoid Dead Locks and have nice clean Synchronization?
7
votes
4answers
2k views

Mutex in shared memory when one user crashes?

Suppose that a process is creating a mutex in shared memory and locking it and dumps core while the mutex is locked. Now in another process how do I detect that mutex is already locked but not owned ...
7
votes
5answers
2k views

How are mutexes implemented?

Are some implementations better than others for specific applications? Is there anything to earn by rolling out your own?
7
votes
9answers
7k views

Overhead of pthread mutexes?

I'm trying to make a C++ API (for Linux and Solaris) thread-safe, so that its functions can be called from different threads without breaking internal data structures. In my current approach I'm using ...
7
votes
2answers
9k views

Why is Boost scoped_lock not unlocking the mutex?

I've been using boost::mutex::scoped_lock in this manner: void ClassName::FunctionName() { { boost::mutex::scoped_lock scopedLock(mutex_); //do stuff waitBoolean=true; } ...
7
votes
3answers
4k views

Pthread mutex assertion error

I'm encountering the following error at unpredictable times in a linux-based (arm) communications application: pthread_mutex_lock.c:82: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' ...
7
votes
4answers
2k views

In a multi-threaded C++ app, do I need a mutex to protect a simple boolean?

I have a multi-threaded C++ app which does 3D rendering with the OpenSceneGraph library. I'm planning to kick off OSG's render loop as a separate thread using boost::threads, passing a data structure ...
7
votes
2answers
1k views

Is this the proper use of a mutex?

I have a situation where I might have multiple instances of a program running at once, and it's important that just one specific function not be executing in more than one of these instances at once. ...
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
6answers
872 views

Implementing a FIFO mutex in pthreads

I'm trying to implement a binary tree supporting concurrent insertions (which could occur even between nodes), but without having to allocate a global lock or a separate mutex or mutexes for each ...
6
votes
1answer
371 views

Assignment via copy-and-swap vs two locks

Borrowing Howard Hinnant's example and modifying it to use copy-and-swap, is this op= thread-safe? struct A { A() = default; A(A const &x); // Assume implements correct locking and copying. ...

1 2 3 4 5 14