Tagged Questions
A semaphore is a synchronization primitive that tracks how many of a limited number of resources are available.
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?
23
votes
2answers
715 views
How do I choose between Semaphore and SemaphoreSlim?
Their public interfaces appear similar. The documentation states that the SemaphoreSlim is a lightweight alternative and doesn't use Windows Kernel semaphores. This resource states that the ...
20
votes
8answers
5k views
What is a semaphore?
A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community:
What is a semaphore and how do you use it?
17
votes
8answers
4k views
In what situation do you use a semaphore over a mutex in C++?
Throughout the resources I've read about multithreading, mutex is more often used and discussed compared to a semaphore. My question is when do you use a semaphore over a mutex? I don't see semaphores ...
13
votes
3answers
10k views
Javascript semaphore / test-and-set / lock?
Is there such a thing as an atomic test-and-set, semaphore, or lock in Javascript?
I have javascript invoking async background processes via a custom protocol (the background process literally runs ...
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 ...
12
votes
5answers
3k views
How to prevent a script from running simultaneously?
I want to prevent my script running more than once at a time.
My current approach is
create a semaphore file containing the pid of the running process
read the file, if my process-id is not in it ...
11
votes
4answers
6k views
CountDownLatch vs. Semaphore
Is there an advantage to using java.util.concurrent.CountdownLatch instead of java.util.concurrent.Semaphore? As far as I can tell the following fragments are almost equivalent:
1:
final Semaphore ...
10
votes
2answers
187 views
Deadlock in Java code with Semaphore and acquire(int)
I have the following Java code:
import java.util.concurrent.*;
class Foo{
static Semaphore s = new Semaphore(1);
public void fun(final char c, final int r){
new Thread(new ...
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
4answers
6k views
pthread_cond_wait versus semaphore
What are the pros / cons of using pthread_cond_wait or using a semaphore ?
I am waiting for a state change like this :
pthread_mutex_lock(&cam->video_lock);
while(cam->status == ...
9
votes
1answer
2k views
sem_init on OS X
I am working on some code which uses the pthread and semaphore libraries. The sem_init function works fine on my ubuntu machine, but on OS X the sem_init function has absolutely no effect. Is there ...
9
votes
2answers
4k views
Differences between System V and Posix semaphores
What are the trade-offs between using a System V and a Posix semaphore?
8
votes
6answers
2k views
How do I recover a semaphore when the process that decremented it to zero crashes?
I have multiple apps compiled with g++, running in Ubuntu. I'm using named semaphores to co-ordinate between different processes.
All works fine except in the following situation: If one of the ...
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
449 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
1answer
223 views
“The usage of semaphores is subtly wrong”
This past semester I was taking an OS practicum in C, in which the first project involved making a threads package, then writing a multiple producer-consumer program to demonstrate the functionality. ...
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?
6
votes
1answer
175 views
Using a semaphore instead of while loop. Is this good or bad?
I have a process that runs in it's own thread and can be started/stopped without blocking. This will eventually go into a Windows service, but I am setting this up in a console app for now until it ...
6
votes
2answers
280 views
possibility of starvation of Dining Philosophers
I need to check my algorithm of solving the dining philosopher problem if it guarantees that all of the following are satisfied or not:
No possibility of deadlock.
No possibility of starvation.
I ...
6
votes
3answers
214 views
Allow only 3 instances of an application using semaphores
I am trying to implement a simple routine using semaphores that will allow me to run only 3 instances of the application. I could use 3 mutexes but that is not a nice approach i tried this so far
...
6
votes
1answer
243 views
Using shared memory with fork()
I already looked at the only similar post I could find, but it wasn't what I was looking for.
Basically, I'm trying to run the Odd-Even Sort with forking, so the child runs odds and parent runs the ...
6
votes
5answers
233 views
Semaphores and locks in MATLAB
I am working on a MATLAB project where I would like to have two instances of MATLAB running in parallel and sharing data. I will call these instances MAT_1 and MAT_2. More specifically, the ...
6
votes
3answers
143 views
Semaphores: Where do I learn about basic concepts such as permits, fairness, barging, etc
The Semaphore class overview in developer.android.com looks pretty good - for those who are already familiar with the concepts and terminology.
I am familiar with some of the acronyms and other ...
6
votes
3answers
187 views
When should I use semaphores?
When would one use semaphores ?
Only example I can think of is limiting the number of threads accessing the same data/code simultaneously...
Any other scenarios in which semaphores would be the ...
6
votes
2answers
267 views
How to implement a distributed semaphore?
I have a limited set of resources that I want to share between multiple processes than run on multiple servers. I guess what I need could be called a distributed semaphore.
I have found an old Perl ...
6
votes
1answer
1k views
Program using Semaphores runs fine on Linux…unexpected results on Mac osX
I wrote a simple program solving the Readers-Writers problem using semaphores. It runs perfectly on Linux os, but when I run it on my Mac osX I get unexpected results and I can't figure out why.
...
6
votes
3answers
877 views
Semaphores and concurrent programming
For a homework assignment i need to program the following scenario. This is going to be done using semaphores using BACI (which is C--)
There are 2 unisex restrooms that can hold 4 people each. ...
6
votes
1answer
6k views
objective-c : @synchronized, how does it work?
i have two methods
-(void) a {
@synchronized(self) {
// critical section 1
}
}
-(void) b {
@synchronized(self) {
// critical section 2
}
}
now my question is if a thread ...
6
votes
5answers
912 views
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 ...
6
votes
10answers
992 views
Do I need a semaphore when reading from a global structure?
A fairly basic question, but I don't see it asked anywhere.
Let's say we have a global struct (in C) like so:
struct foo {
int written_frequently1;
int read_only;
int written_frequently2;
};
...
5
votes
3answers
215 views
Thousands of reader/writer locks in a single process
I am currently designing a C++ cross-platform (Linux/Windows) server application with a large-scale synchronization pattern. I internally use boost::thread as an abstraction of the OS-specific ...
5
votes
1answer
168 views
Semaphore without destruction/unmapping race condition
Note: I have heavily edited this question for clarity after making a mess of it brainstorming in public. However the actual algorithms described, and the question about whether they're sufficient to ...
5
votes
4answers
672 views
Why doesn't my mutex work properly in a multi-process C application?
I am hacking away at a uni assignment and have come across a problem with my code which is supposed to spawn 2 processes, where the second process waits for the 1st to complete before executing. This ...
5
votes
2answers
694 views
Named semaphores in Python?
I have a script in python which uses a resource which can not be used by more than a certain amount of concurrent scripts running.
Classically, this would be solved by a named semaphores but I can ...
5
votes
2answers
2k views
Lock, mutex, semaphore… what's the difference?
I've heard these words related to concurrent programming, but what's the difference between them?
5
votes
1answer
719 views
Query a PHP semaphore without blocking?
Is it possible to query a semaphore created with sem_get without actually blocking like the sem_acquire function does?
Cheers,
Dan.
5
votes
4answers
3k views
How does semaphore work?
Can the semaphore be lower than 0? I mean, say I have a semaphore with N=3 and I call "down" 4 times, then N will remain 0 but one process will be blocked?
And same the other way, if in the beginning ...
5
votes
3answers
546 views
Java: What, if anything, is locked by synchronized methods apart from the object they belong to?
Now, I'm not sure whether this is a stupid question, please bear with me if it is.
Is the lock on an object "recursive", i. e. if two objects have references to a third object in their fields and a ...
5
votes
3answers
1k views
How can I implement a thread-safe list wrapper in Delphi?
I have a list wrapper that maintains two Tstringlists and a TClassList
I need this to be thread safe, such that:
Concurrent writes are not allowed (wait state of some sort should be entered)
...
4
votes
1answer
74 views
Interprocess semaphores sometimes not working as expected
I have the following C code, where variables prefixed by sm are shared by two processes proc1 and proc2. Therefore the semaphores are also shared. This code is called repeatedly. So if I say previous ...
4
votes
2answers
104 views
Strong Semaphore Queuing Discipline and Starvation
In William Stallings' book on Operating Systems, he defines a strong semaphore as one that has a FIFO queuing discipline, and a weak semaphore one that is unordered. Surely there are other queuing ...
4
votes
5answers
208 views
Java read & write lock requirement, with lock and release from different threads
I'm trying to find a less clunky solution to a Java concurrency problem.
The gist of the problem is that I need a shutdown call to block while there are still worker threads active, but the crucial ...
4
votes
1answer
736 views
SemaphoreFullException when checking user role via ASP.NET membership
I have a page that checks that a user is in a particular role before performing some task, and have had no problem with functionality and have made no obvious related changes to the code in question. ...
4
votes
2answers
195 views
pthreads + semaphores, why is this not executing properly?
This is an assignment I'm working on. It must use semaphores, not mutex.
#include <stdio.h>
#include <pthread.h>
#include <assert.h>
#include <unistd.h>
#include ...
4
votes
1answer
413 views
Perl, fork, semaphores, processes
I need to create a program that would run 3 processes at the same time in random sequence from a list and lock those processes with semaphore one by one so to avoid duplicates.
For example, you have a ...
4
votes
2answers
424 views
Piping data between threads with Java
I am writing a multi-threaded application that mimics a movie theater. Each person involved is its own thread and concurrency must be done completely by semaphores. The only issue I am having is how ...
4
votes
2answers
179 views
Librarian resource allocation problem with Semaphore in Java
Please help me with this two-part question. Here is the first part:
(Part 2: I have updated the code since - requirements have changed a
bit.)
I am trying to implement the Librarian problem in ...
4
votes
2answers
344 views
Are Semaphore P and V operations atomic?
Are the P() and V() operations that can be performed on a semaphore guarantee atomic? Can a semaphore prevent two processes getting into the P()?