Tagged Questions

2
votes
2answers
50 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)?
1
vote
2answers
99 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 …
3
votes
2answers
50 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
3answers
84 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
51 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 …
0
votes
3answers
78 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
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 …
0
votes
1answer
71 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 …
1
vote
7answers
294 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 …
1
vote
4answers
215 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?
2
votes
3answers
165 views

Setting Access permissions on Semaphore?

I am assuming that once a semaphore is created by a process, it will be accessible by any process/user. Is it possible to put access restrictions on a particular semaphore so that …
0
votes
1answer
84 views

Semaphore timeout mechanism in C#

Does anyone know how .NET handles a timeout on a call to Semaphore.WaitOne(timeout)? I'd expect a TimeoutException, but the MSDN documentation doesn't list this in the list of exp …
0
votes
1answer
75 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 …
1
vote
3answers
125 views

How to display the process currently holding a semaphore?

In userspace Linux, I have a process blocking on a semaphore, as found by strace. Once the error condition occurs, the blocking is repeatable, so there must be another process that …

1 2 3 4 5 next
15 30 50 per page