2
votes
1answer
41 views
Is there a good Semaphore for XNA on the XBox 360?
I'm looking for a fast and efficient implementation of a Semaphore for the .NET Compact Framework. There has been another Question here on SO (Semaphores in .NET compact framework) in which it was …
0
votes
0answers
26 views
semaphores and monitors
I think I understand the mechanism of semaphore and monitor, however I’m not sure what criteria could be used to compare this two, in terms of better solution for Readers and Writers problem as well …
0
votes
1answer
55 views
sem_timedwait not supported properly on RedHat Enterprise Linux 5.3 onwards?
Hi,
We're seeing odd behaviour on RedHat Enterprise Linux systems with pthreads sem_timedwait. It's only occurring with versions 5.3 onwards.
When we create the semaphore on a background thread …
1
vote
2answers
72 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 critical section that …
0
votes
1answer
29 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<ResourceClass> …
2
votes
2answers
56 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
60 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 bunch of people giving …
1
vote
2answers
126 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 emulate that in …
0
votes
2answers
204 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
107 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 general function that …
2
votes
2answers
31 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
6
votes
10answers
514 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;
};
…
0
votes
3answers
87 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, P1, P2 and P3 have to …
0
votes
1answer
81 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 on a semaphore and …
0
votes
3answers
259 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 completely unrelated …
