0
votes
1answer
28 views
Semaphore controlled resources - what is the clean shutdown sequence/pattern
If i control a pool of resources with a semaphore, what is the clean shutdown sequence for this resource pool?
class ResourcePool
{
Semaphore resourceSemaphore;
Stack<R …
2
votes
2answers
46 views
fcntl() for thread or process synchronization?
Is it possible to use fcntl() system call on a file to achieve thread/process synchronization (instead of semaphoress)?
3
votes
2answers
42 views
Semaphores in .NET compact framework
Unfortunately, there is no Semaphore in System.Threading when using the .NET Compact Framework.
I'm not sure why that is, does anyone have an idea?
After googling I've found a bun …
1
vote
2answers
93 views
Linux inter-process reentrant semaphore
I'm porting a Windows application to Linux and I have a synchronization problem.
In Windows I'm using a system-level named mutex to sync access to a shared memory block.
How do I …
0
votes
2answers
192 views
Re: Shared Memory and Semaphores
Is an IPC mechanism using shared memory and semaphores for synchronization simplex like pipes or duplex like message queues?
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 …
2
votes
2answers
19 views
Blackberry Semaphore class
Hello,
I can't seem to find anything equivalent to a Semaphore in the Blackberry Java Reference. What am I missing? java.util.concurrent isn't even there.
Thanks! Sean
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 …
6
votes
10answers
501 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 writt …
0
votes
3answers
74 views
Multiprocess Synchronization with a Single Semaphore
We're covering multithreaded programming in a class I'm taking. The professor offered a bonus question that I have been trying, to no avail, to figure out:
Each of processes P0, P …
0
votes
1answer
65 views
FIFO semaphore test
Hello everyone,
I have implemented FIFO semaphores but now I need a way to test/prove that they are working properly. A simple test would be to create some threads that try to wait …
0
votes
3answers
246 views
Is it possible to avoid a wakeup-waiting race using only POSIX semaphores? Is it benign?
I'd like to use POSIX semaphores to manage atomic get and put from a file representing a queue. I want the flexibility of having something named in the filesystem, so that complet …
1
vote
7answers
288 views
C semaphores and a “barrier” between threads
I'm trying to solve a problem our Operating Systems professor showed us from a previous exam to prepare for the next one.
The problem is to have two threads that execute concurren …
6
votes
4answers
607 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 proc …
1
vote
4answers
199 views
What is the Mutex and semaphore In c#? where we need to implement?
What is the Mutex and semaphore In c#? where we need to implement?
How can we work with them in multithreading?
