Tagged Questions

1
vote
3answers
63 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 …
1
vote
1answer
48 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
61 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 …
2
votes
2answers
17 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
7answers
242 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 …
0
votes
1answer
47 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
4answers
149 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
148 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 …
3
votes
3answers
247 views

Calling a function in child thread in Qt?

I have a main thread that invokes a child thread function at different times but I am not sure whether that is right way of doing it in Qt.What is wrong with the below code and loo …
1
vote
3answers
111 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 …
0
votes
1answer
65 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
54 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
1answer
71 views

UNIX/OSX version of semtimedop

GLibC has a method semtimedop which allows you to perform an operation (a semaphore acquire in this case) which times out after a certain amount of time. Win32 also provides WaitFo …
2
votes
2answers
89 views

Django: Simple rate limiting

Many of my views fetch external resources. I want to make sure that under heavy load I don't blow up the remote sites (and/or get banned). I only have 1 crawler so having a centra …
2
votes
1answer
181 views

Multi-process synchronization - better choice than semaphores?

I've got a queue resource that is shared across multiple producers and multiple consumers. All are independent processes; no one process "owns" the queue. By nature of the implem …

1 2 3 4 next
15 30 50 per page