A semaphore is a synchronization primitive that tracks how many of a limited number of resources are available.

learn more… | top users | synonyms

1
vote
1answer
30 views

Python2.6.5 : Is there python equivalent of Java Semaphore tryAcquire

I am looking for python alternative for Java's tryAcquire Semaphore function. I found out that this function is added in python version 3 and after. I am using python version 2.6.5. Any alternatives ...
1
vote
1answer
25 views

Android - Best way to watch a SQLite database for new rows and then perform a task

New Android app "developer" here, working on my first app. As the title suggests I am trying to find the best way to handle updates to my SQLite database and perform an action based on new rows. New ...
0
votes
2answers
28 views

Win32 Uderstanding semaphore

I'm new to Multithread in Win32. And I have an assignment with Semaphore. But I cannot understand this. Assume that we have 20 tasks (each task is the same with other tasks). We use semaphore then ...
1
vote
3answers
40 views

To lock or not to lock

I have a JavaScript/jQuery web app that contains an object that is read/write accessed by the user via DOM events as well as by the server via web sockets or xhr. I know that JavaScript is single ...
3
votes
1answer
42 views

Named semaphore or flock which is better C linux

I am trying to create a shared memory which will be used by multiple processes. these processes communicate with each other using MPI calls (MPI_Send, MPI_Recv). I need a mechanism to control the ...
1
vote
1answer
44 views

Dining Philosophers in C using fork()

I wrote a C program for the Dining Philosophers Problem using pthread some time ago and am now trying to change it to use fork() instead. This is an exercive for a lecture I already passed. But a ...
1
vote
2answers
56 views

Shared memory access control mechanism for processes created by MPI

I have a shared memory used by multiple processes, these processes are created using MPI. Now I need a mechanism to control the access of this shared memory. I know that named semaphore and flock ...
1
vote
1answer
31 views

Three types of threads attempting to access critical section

For my application I need to be sure, that in critical session only one type of thread is processing. Number of threads for given type is not specified and could be "large". I've came with simple ...
3
votes
2answers
59 views

Doubts regarding Named Semaphore in C Linux

I am using named semaphore in C in Linux to control the access of shared memory across multiple processes. As of now I have not added any code to sem_close and sem_unlink the semaphore. So my ...
0
votes
2answers
21 views

ios semaphore wait doesn't wait

I'm having a problem using the dispatch_semaphore_wait(..) when the semaphore was created with a value greater than 0 sema = dispatch_semaphore_create(2); ...
0
votes
1answer
106 views

Fast counting semaphore for JVM [closed]

Looking for implementation of counting semaphore with two methods like below but more efficient - with less latency of parking/unparking of waiting threads: public class CountingSemaphore { private ...
0
votes
0answers
27 views

Dealing with request limits

I have a very large number of errors occurring in production right now, mostly timeouts and this: Exception type: System.Data.SqlClient.SqlException Exception message: Resource ID : 1. The ...
0
votes
2answers
46 views

java + can we miss signals using wait and notify?

extract from this semaphore tutorial says: Using a semaphore like this you can avoid missed signals. You will call take() instead of notify() and release() instead of wait(). If the call to take() ...
0
votes
1answer
60 views

Java sempahore options

I'm writing an application in which there is a possibility of more than one thread trying to modify the same file. To overcome this, I have thought of storing the filenames in a concurrent hashmap, ...
0
votes
1answer
16 views

Wait for URLConnection block to finish

I'm creating a REST client class for my iPad app. So I created a BOOL method which does the login using an NSURLConnection subclass I created earlier. This JWURLConnection has block type properties ...
-4
votes
0answers
22 views

Program compiles on one computer but not mine [closed]

I have written a Unix program with a student in my class. In this program, we are using semaphore and shared memory stuff. When my friend compiles the program in his Unix/Ubuntu, all goes fine, but ...
0
votes
1answer
19 views

GDB test script

So I am relatively new to coding so please forgive improper vocab. What I am basically trying to do is create a script for, or perhaps enter commands into, GDB so that it can run my code with the ...
1
vote
1answer
44 views

How do I allow only 1 Java Semaphore to be created on a server?

This is similiar to How do I allow only 1 named Semaphore to be created on a server? but I am asking here for Java. I would like to create a semaphore in my Java app, where the creation will fail ...
0
votes
1answer
41 views

How do I allow only 1 named Semaphore to be created on a server?

I would like to create a semaphore in my app, where the creation will fail (with a clear exception), if another instance of the app is running and has already created the semaphore. So only one per ...
0
votes
1answer
42 views

Using semaphore for multithreading in C

The Idea here is to create a file to be written to. I'm trying to create ten threads and have them print to the file 10 times each. Using a semaphore to stop multiple threads from writing to the file ...
2
votes
2answers
48 views

Synchronized Vs Semaphore

While reading concurrency in Java, I have following doubts: Does Java provides lower level construct then synchronized for synchronization? In what circumstances will we use semaphore over ...
0
votes
0answers
14 views

FIFO semaphores implemented using non-FIFO semaphores?

Is it possible to implement FIFO semaphores using non-FIFO semaphores? For example, if an OS offers semaphores that don't have FIFO guarantees, can we wrap around them to build FIFO semaphores?
1
vote
1answer
26 views

FIFO guaranteed with semaphores?

I found on SO this question very similar, however does not exactly thoroughly answer my question. Does java.util.concurrent.Sempaphore; with the overloaded constructor which take also the fairness ...
2
votes
2answers
44 views

About semaphore class

Note that FIFO ordering necessarily applies to specific internal points of execution within these methods. from doc What do they mean with internal points of execution?
-1
votes
1answer
53 views

Valid use of semaphore? [closed]

I wrote this small program which uses semaphores instead of pthread_cond and pthread_mutex: #include <stdio.h> #include <pthread.h> #include <semaphore.h> sem_t sema; pthread_t ...
3
votes
2answers
37 views

Can the size of a Semaphore be related to the order of execution of Threads?

Looking at some literature for the 1Z0-804 exam, I find this example question for it: Consider the following program: class ATMRoom { public static void main(String []args) { ...
0
votes
1answer
63 views

Why does this code cause a deadlock? (producer-consumer model)

I'm trying to design 5 producers and single consumer model. I have just learned how to design the model from Producer-consumer problem, Wikipedia. But I have hard time avoiding the dead lock. I don't ...
1
vote
1answer
27 views

how to sync and write all to text?

multithreaded fence lines from a text file, then sending a request form post \ get to that data after receiving a positive response in writing to another text file. public int index = -1; public int ...
3
votes
1answer
53 views

Efficient bucket-sort on GPU

For a current OpenCL GPGPU project, I need to sort elements in an array according to some key with 64 possible values. I need the final array to have all elemens with the same key to be contiguous. ...
0
votes
1answer
55 views

Parent is executing before child process, how to force opposite through semaphores?

I am having trouble using shared memory, semaphores and forks in Unix C. My semaphores are not posix. I create a pointer to shared memory 2*sizeof(float). I initialize the value of my semaphore to 2 ...
2
votes
1answer
57 views

How to implement a global semaphore class

I am trying to control access to the windows clipboard by using a semaphore. I need this semaphore to be global throughout the application because several thread access the semaphore to save data to ...
-2
votes
1answer
32 views

Posix Semaphore compilation error in Makefile

This is my makefile: program : program.o gcc -o program program.o program.o : program.c library.h gcc -c program.c In "library.h" I've got the headers, but I have a problem ...
2
votes
2answers
74 views

Sleeping barber, semaphores?

I've been trying to solve this for two days now and I finally give up, I'm posting my code here with the hope that some fellow human can provide me with what I have been missing, because I think I am ...
0
votes
0answers
9 views

missed sidnal in binary semaphore

This is the code of binary semaphore: down(s): is s<=0 : process blocked else s-- up(s): if there are blocked process, wake up one f them else s++ Now, in my summary : "There is ...
0
votes
1answer
34 views

Process synchronization in Python

I try to synchronize multiple processes by using semaphores. I thought instead of creating a function for each process, it might be possible in a more generic way, with a single function and some ...
0
votes
1answer
25 views

sem_getvalue() dysfunctionality in Mac OS X - C++

I'm trying to implement synchronized use of a shared memory for bunch of threads in Mac OS X by semaphores. (I just overlook the fact that Mac users have got lots of issues with initializing a ...
0
votes
1answer
34 views

Can I use identical NSStrings as one sempahore for @synchronized

As far as I know, identical NSStrings are optimized in such a way that they are actually one and the same object in most(all?) circumstances. If yes, does that mean that I can use an NSString pointer ...
2
votes
2answers
62 views

c++ semaphore is not considering order of call

I'm currently trying to limit currently running threads to an maximum amount, e.g. core-amount. This is all doing well and I have something like 100 full data-writes (open, append, close) per second, ...
0
votes
1answer
31 views

ERROR_SEM_IS_SET - What does this error code mean?

I get this error message when I try to disconnect a named pipe which is created in a different thread. Any help please.
0
votes
0answers
24 views

LockSupport, waiting main?

I am trying to build my own semaphore (for a class) and I want to put all the "blocked" threads in a FIFO data structure, so then I can put them on ready by just peeking the first who entered and ...
1
vote
1answer
43 views

Unexpected Output Running Semaphore [duplicate]

The first process shouldn't start its (i)th iteration unless the second process has finished its (i-1)th iteration.The output is not what I need.I wonder if it is possible to have the output by only ...
1
vote
1answer
42 views

Unexpected Output Running Semaphore

I'm trying to write a program that forks another process and stays in sync so that the first process doesn't start its (i)th iteration until the second process has finished its (i-1)th iteration. Is ...
0
votes
1answer
88 views

one-producer and multiple consumer : should I use N semaphore if there are N consumers and N types of products

I have a program with 1 producer thread and N consumer threads. There are N types of producet, so I set up N FIFO queues(products should be delivered to the consumer in sequence). like: FIFO_queue_t* ...
0
votes
0answers
38 views

Semaphore with 0 value doesn't block thread after wait call

I'm new to semaphore.h and I have a small question. ... sem_t semaphore; sem_init(&semaphore, 1, 0); sem_wait(&semaphore); ... That is a part of my code. I init my semaphore with zero ...
0
votes
1answer
84 views

How do I draw a state diagram for a suspension-queue semaphore?

Here is the question: Each process may be in different states and different events cause a process to transfer from one state to another; this can be represented using a state diagram. Use a state ...
0
votes
0answers
79 views

Multithreaded code from LINUX to OSX

For a class project we wrote semaphores in C89 in Linux using ucontext.h. My instructor wrote most of this code: #include <ucontext.h> typedef struct TCB { struct TCB *next; ...
-1
votes
1answer
135 views

Implementing basic semaphore to simple multi-threads program

Please help the Synchronization I have to make this program to performe sequentially manner using in threads( ex) thread1 performe and thread2 perforem and so on) But it should be ...
0
votes
1answer
136 views

C, how to use POSIX semaphores on forked processes?

I want to fork multiple processes and then I want to use a semaphore on the forked processes. Here is what I tried: sem_init(&sem, 1, 1); /* semaphore*, pshared, value */ . . . if(pid != 0){ /* ...
0
votes
1answer
43 views

Sometimes out of 5 times, 2-3 times, Threads gets deadlock in waitforsingleobject

I have two thread T1 and T2 which tries to print alrenatively through semaphore signaling. Each thread prints 10 times, but sometime, both gets blocked at WaitforSingleObject and does not print ...
0
votes
1answer
77 views

forked processes, semaphores, why this output?

I have an array boxIn[] of type char that contains R R G B G B O Y O O P R characters. boxIn[] is in shared memory. There is also a char* in shared memory, p, that has a value of one of the chars in ...

1 2 3 4 5 18