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

learn more… | top users | synonyms

2
votes
2answers
45 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
24 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
52 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
6 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
20 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
18 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
28 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
54 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
28 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
21 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
42 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
41 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
69 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
30 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
62 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
78 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
85 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
90 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
36 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
72 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 ...
0
votes
2answers
87 views

using semaphores for multithreading

Good Day! I need to solve synchronization problem using semaphores. I've read many tutorials and I now know that I should use a release method and am acquire method, however, i don't know where to ...
1
vote
1answer
52 views

How best to keep a job queue clean of retry/duplicate jobs (using sidekiq and redis-semaphore)

I have a rails app that fetches a lot of emails from multiple IMAP accounts. I use sidekiq to handle the jobs. I use sidetiq to schedule the jobs. I use redis-semaphore to ensure that recurring jobs ...
-5
votes
0answers
52 views

Up-to-date trouble solving with semaphores in C# [closed]

I have a homework about an up-to-date problems solving with semaphores in C#. The teacher does not accept the old issues about the semaphores like "dining philosophers", "sleeping barber" etc. which ...
0
votes
2answers
57 views

Simple semaphore implementation with form application

I want to show an example application of semaphores for a specific problem for my homework. I added 3 buttons to my C# form and I want to show that only one button at a specific time executes the bank ...
-3
votes
0answers
39 views

Semaphore in Java [closed]

I need to wright a semaphore program in java that waits for one of two Friends to bring chocolate so that i can use it to make 20 blocks of fudge from it. the two friends arrive at random and ...
0
votes
2answers
77 views

How can I fix, “Invalid use of void expression”? C++

I've written a game to move "players" around a board using a semaphore to lock the board before allowing another player access. I'll skip most of the code for the sake of brevity, but here are the ...
0
votes
3answers
81 views

Is there a general way to convert a critical section to one or more semaphores?

Is there a general way to convert a critical section to one or more semaphores? That is, is there some sort of straightforward transformation of the code that can be done to convert them? For ...
4
votes
1answer
62 views

What's the best solution for solving this situation with Semaphores?

I want to try out Java Semaphores, so I thought about this problem: There's a train station and two railways are crossing, one to the east and another one to the south. So of course we should get ...
0
votes
0answers
18 views

CPU utilization for preeemptive tasks

Three tasks T1, T2 and T3 with priorities T1>T2>T3 are synchronized using a binary semaphore. Initially, T3 runs for 50ms after having set the semaphore, when it is preempted by T2. T2 runs ...
1
vote
0answers
19 views

Simulating database access rules with pthreads, locks

For a hypothetical database, there are three operations: Search, Append, Modify Search: can run concurrently with any number of other search operations Append: database can only run ONE append ...
0
votes
1answer
29 views

Merge implementation with semaphores

I'm trying to implement merge sort with semaphores and I have some troubles making my code running: sem_t *sem; pthread_t *t; void *parallel_merge_sort(void *thread_id) { int a = *((int *) ...
0
votes
1answer
40 views

How does a semaphore actually work when all N processes are inside the critical section?

As far as I understand, a mutex is used to lock the critical section so that no other threads can access it when already a thread is using it. So mutex avoids multiple threads trying to use or change ...
0
votes
0answers
26 views

Semaphores using ucontext.h

Basically I have spent 15 hours without sleep trying to figure out semaphores. Can anyone explain to me what is wrong with my current code? I believe my problem is with P(). I can't seems to figure ...
2
votes
1answer
74 views

How expensive are semaphores vs. spin locks in practice?

This question asks whether a spin lock can be improved in a way that doesn't compromise latency, but uses less CPU time. A large list of answers suggest high level language concepts in C++11, Boost, ...
0
votes
1answer
64 views

Segmentation Fault when using Threads and Semaphores, Mac Vs Linux

My problem deals with a segmentation fault that I get when I run this program on a linux machine versus my own mac computer. This program runs how I believe it should on my own mac computer, yet when ...
0
votes
2answers
109 views

Using Critical Sections/Semaphores in C++

I recently started using C++ instead of Delphi. And there are some things that seem to be quite different. For example I don't know how to initialize variables like Semaphores and CriticalSections. By ...
1
vote
0answers
57 views

I can't figure out what is wrong with my semaphore implementation

I need to implement producers and consumers in C89 using semaphores. I will admit this is for a school assignment, so I am going to use mostly pseudocode. It took me forever to simplify my code, so ...
1
vote
0answers
17 views

Synchronization in finding tuples satisfying given template

Tuple read(Template template) gets a template of a tuple as parameter and returns a tuple satisfying the template from the buffer (shared memory). void write(Tuple tuple) writes a tuple into the ...
0
votes
0answers
45 views

Java - What is a indebted semaphore

In a Code example it is said that a thread re-synchronization is based on signaling, using an indebted semaphore. final Semaphore indebtedSemaphore = new Semaphore(1 - PROCESSOR_COUNT); What is ...
0
votes
1answer
49 views

PHP exec(): Why can I access shared memory, but not named semaphores? (errno = 13)

I'm using the php exec() command to run, get_value.c. get_value.c attached to shared memory reads a value and returns it to my PHP script. It worked just fine during my initial testing of attaching to ...
2
votes
1answer
79 views

Avoid zombies when father is in a wait of a semaphore

This is a strange question. I have 2 different program: server and client. server start, alloc all the message queue and start to waitin for a signal from client (the signal is for tell to the server ...
0
votes
0answers
19 views

How to systematically using semaphore to design starvation-free process couples?

Or a weaker version, how to tell if a system has deadlocks without trying out every sequences? By now where I solve questions about resources and semaphores, I do it by trying out every sequences. Is ...
0
votes
2answers
50 views

What prevents a race condition when checking a semaphore value?

I'm studying multithreading and trying to understand the concept of semaphores and mutual exclusion. Most of the examples I find online use some sort of library (e.g. pthread) to implement the ...
0
votes
2answers
62 views

c semaphores and shared memory action counter

I am working with semaphores and shared memory. I need create 11 subprocesses. First with I=0 is printing A and others are printing B. Then I need each proces to print message with counter *APtr so ...
0
votes
3answers
61 views

Multiple threads can wait on a semaphore at same time

Can multiple threads wait on a single semaphore ? If yes, upon semaphore down which one will be resumed ?
0
votes
1answer
30 views

Why is my release() method not waking my instance?

I've written an example program to demonstrate my problem. There's a bartender thread and three customer threads. They run at the same time once created. The bartender is suppose to serve each ...
0
votes
1answer
39 views

I have a TCP IP client server with ontly one cilent allowed to connect to sever. Do I need semaphores?

I have a Java TCPIP cient/server where there is only one client allowed. I am contemplated if I should need to add any semaphore protection. I'm thinking no but I have a loop where I wait for socket ...
0
votes
1answer
103 views

Structure of sem_t and implementation of semaphores

In C programming language why do we need a special sem_t type for defining the semaphore? Couldn't that been an integer?How is sem_t defined? How is the functions sem_post and sem_wait implemented? ...
2
votes
1answer
73 views

How to find out the number of instances of a shared Excel file using VBScript [duplicate]

I am trying to find out, using VBScript, the number of instances of a shared Excel file running on different systems. Let's say the file is 'test.xls', and it is placed on a shared drive and ...
2
votes
1answer
90 views

Semaphore access patterns in C/C++ (Linux)

I am curious about the best way to store/use a semaphore. Previously, I have always used semaphore stored in shared memory (because I am already using the shared memory anyway) as a sem_t, then used ...

1 2 3 4 5 17