0
votes
2answers
76 views

Multiple producer multiple consumer thread issue

I have a program in which I am trying to implement a multiple-producer, multiple-consumer setting. I have code which seems to work well when I have one consumer and multiple producers, but introducing ...
0
votes
0answers
109 views

multiple producers - one consumer (semaphores for synchronization)

Im working on program that will do following : N Producers fills buffer while consumer waits for full buffer, when buffer is full Producers are waiting until Consumer empties buffer and so on. The ...
4
votes
4answers
131 views

Thread synchronization issue: possible race, misuse of volatile, cache coherency?

I am getting acquainted with pthreads programming; the following code is a simple producer/consumer design where data is put/fetched from a global list. The problem is: the data pointer in the ...
0
votes
1answer
128 views

pthreads: thread pool synchronization methods for reentrant/reusable threads?

this is my first post here, thank you for your tolerance in advance. I have a thread pool with job queue >> number of threads. Process flow: Init thread pool (M number of threads) Put N number of ...
0
votes
1answer
164 views

Sleep/Wake up mechanim between pThreads and POSIX process;

I have a C process creating several pThreads. To sleep and wake the threads up I am using pThread conditions. However, I want to sleep the POSIX process in such a way that pThreads can wake it up. How ...
6
votes
1answer
184 views

Wait for multiple threads (Posix threads, c++)

Consider the following situation: I have an object foo that is used by multiple threads, that may or may not repeatedly call a method bar() on foo. It is perfectly fine (and desired) that bar() is ...
1
vote
1answer
267 views

about synchronization while implementing the sleeping barber with multi-thread

hi there i'm implementing a multi-thread program which is called the sleeping barber problem. The issue is there is one barber shop with N chairs and if there are no any customers barber will fall ...
0
votes
2answers
144 views

Share a file descriptor between threads

I have many POSIX threads, two reader that read from serial port and others write to same port using a file descriptor. How can I share same descriptor between them? I have synchronized read/write and ...
0
votes
3answers
193 views

Mutex Locks Across Threads with Different Functions

The problem: Similar to one of my other Questions Other Question I am trying to create a program in C that allows me to Search through 10 text files with a variable amount of threads to find the ...
0
votes
2answers
35 views

condition variables signaling

In this link here, in the increment function, condition variable is signalled before actually incrementing the count(from zero). Should the signal be not invoked after incrementing the count? Or does ...
2
votes
2answers
93 views

3by3 thread synchronization : how to avoid overhead

Let's say I'm running N threads. Every thread needs to be sync with the next and the previous one. for (i = 0 ; i < NITER; i++){ do_something (); sync_with_neighbours (tId - 1, tId ...
1
vote
2answers
108 views

mutex with pthread

I need to call a function that returns a unique id, int getid() { static id=0; id++; return id; } Multiple threads need to call this function, my problem is I'm not sure where I need to lock the ...
1
vote
1answer
83 views

Thread waiting on a wait condition in a multiprocess setup is not awakened

I have a strange problem with using wait conditions and mutexes from pthreads on Linux to do synchronization between processes. Note that this is not between threads in one process only. My use case ...
1
vote
2answers
272 views

about synchronization with using multiple semaphores

hi there i'm working on an assignment about using POSIX threads with multi semaphores. the brief explanation of assignment is: there are 4 various data packets (char/video/audio/image), each of them ...
0
votes
2answers
391 views

Multiple producer single consumer with Circular Buffer

Need help in getting the following to work. I have a multiple producer threads (each writing say 100 bytes of data) to ringbuffer. And one single reader(consumer) thread ,reads 100 bytes at a time ...
5
votes
1answer
115 views

pthreads: a thread that triggers other threads

Hello, I'm new to multi-thread programming. I'm trying to create a code that creates a thread THREAD1, that, after it has done something, it triggers two other threads, say THREAD2 and THREAD3, and ...
4
votes
1answer
277 views

C pthread synchronize function

Is there a function in pthread library to synchronize threads? Not mutexes, not semaphores, just one call function. It is supposed to lock the threads that get in that point until all the threads ...
0
votes
1answer
121 views

Is it possible to open a serial port multiple times?

I'm designing a control system which should handle too many actuators (or sets of actuators) over a serial port. The new design (not implemented yet) is supposed to control actuators over multiple ...
1
vote
5answers
126 views

pthreads are not executing serially

I am new to these pthreads. I wrote a program so that instead of displaying the numbers randomly, it should display in order. I have used pthrea_join() method for that. The program is as follows: int ...
1
vote
1answer
189 views

Why aren't Pthread Mutexes async-signal-safe?

Pthread Mutexes are 'not asyn-signal-safe. What does this mean?
3
votes
3answers
166 views

how to wait for starting thread to have executed init code

i'm having trouble synchronizing a master thread to a recently started child thread. what i want to do is: master thread creates a new child thread and blocks child thread starts and initializes ...
0
votes
4answers
151 views

Multithreading in C not working properly

So I managed to get my program running but for some reason, no customer walks in the bar unless the customer before him/her leaves the bar first, how can I fix it? I tried a mutex_lock but I might've ...
1
vote
2answers
172 views

Synchronization not working properly when Multi-threading in C

I am trying to create a simple bar program where a certain amount of customers can be inside the bar at the same time. And every time a customer asks for a beer, then the bartender should server the ...
3
votes
1answer
177 views

pthread synchronization on two different conditions

I have a worker thread processing a queue of work items. work items might not be processable right now, so the worker thread might push them back into the queue. void* workerFunc(void* arg) { ...
0
votes
2answers
313 views

Thread sync by using mutex and barrier in C

I am trying to use pthread mutex variables and barrier to synchronize the output of my program, but it is not working the way I want it to. Each thread is seeing its final value every 20 values ...
1
vote
1answer
146 views

how to let a thread wait for destruction of an object

I want to have a thread wait for the destruction of a specific object by another thread. I thought about implementing it somehow like this: class Foo { private: pthread_mutex_t* mutex; ...
3
votes
2answers
742 views

PThread beginner - starting, syncing, stopping a worker thread

I have the following manager<->worker situation: class Manager { private: pthread_attr_t workerSettings; pthread_t worker; pthread_cond_t condition; pthread_mutex_t mutex; bool ...
0
votes
1answer
204 views

clarifications on full memory barriers involved by pthread mutexes

I have heard that when dealing with mutexes, the necessary memory barriers are handled by the pthread API itself. I would like to have more details on this matter. Are these claimings true, at least ...
0
votes
0answers
181 views

About synchronization of multithreads on GNU/Linux and POSIX

This is an interview question. The interview has been done. What kinds of synchronizations of multithreads are available on GNU/Linux and POSIX ? My idea: mutex semaphore conditional ...
-4
votes
1answer
278 views

Synchronization in Pthread C++

I've read about synchronized thread in Posix threads tutorial. They say that function pthread_join is used for waiting thread until it stops. But why doesn't this idea work in that case? Here is my ...
-1
votes
1answer
89 views

Simulate send and receive using pthreads

I am trying to simulate send and receive functionality using pthreads. I did implement the following code. But some times it hangs or produce wrong results. int g_sender,g_receiver; //global ...
3
votes
2answers
202 views

How to resuse threads - pthreads c

I am programming using pthreads in C. I have a parent thread which needs to create 4 child threads with id 0, 1, 2, 3. When the parent thread gets data, it will set split the data and assign it to 4 ...
0
votes
1answer
124 views

giving an id to semaphore

Hi I want to maintain a list of semaphores created and their allowed count (no of thread instances allowed to access that semaphore) value. I tried with a map in stl like map<sem_t, int> ...
0
votes
1answer
98 views

program is getting stuck at pthread_spin_unlock statement when optimizations (O1 or O2 or O3) are turned on

I am writing a program which has 8 threads. I am implementing a barrier which has a global count that is incremented by each thread when it possesses the lock. All threads wait in a while loop for ...
0
votes
1answer
241 views

syncronization problems using Pthreads

I'm working on a C project that consists of a simple game using the ncurses and pthread libs. Have to say I'm still studying and I'm already stucked into some synchronization problems, using mutexes ...
2
votes
2answers
418 views

Thread 1 and 2 are taking much priority in my implementation of Lamport's bakery algorithm

I am implementing Lamport's bakery algorithm. My output shows that the threads 1 and 2 are taking much priority than others. My implementation is as follows. #include(pthread.h) ...
2
votes
1answer
80 views

Thread and Synchronization

I'm confused about how threads and synchronization works. I am working through a sample problem that is described like so: There are two threads: P and Q. The variable, counter, is shared by both ...
1
vote
0answers
128 views

Anderson Queue lock on Solaris

I need a C equivalent of the following Java class. It is a queue lock known as an Anderson Lock used in thread synchronization. I am not comfortable using C, and there are some thread classes which I ...
0
votes
1answer
298 views

Worker threads and controller thread synchronization

I'm having trouble with getting my worker threads and facilitator threads to synchronize properly. The problem I'm trying to solve is to find the largest prime number 10 files using up to 10 threads. ...
2
votes
4answers
311 views

Simple Generator-monitor program with condition variables

I created a simple program that uses condition variables to create synchronization between two threads. I'm getting a strange output that I cannot seem to find the solution to. What the program ...
1
vote
3answers
538 views

how to share a mutex lock for a group of pthreads ?

I'm trying to do some stuff with pthreads and sync them: How could I use mutex just for a group of threads ? Let's say I have t0,t1, t2, .. t20. pthreads running at the same time, and I want to have ...
0
votes
1answer
126 views

thread syncronization - writer priority locks

So, I am using C on a unix system and have access to the pthreads & semaphore.h libraries. Here is the problem (I believe this boils down to a "writer priority rw lock" problem): For ...
1
vote
3answers
78 views

Associate global value with signal

My intention is to let send() omit signal when the global counter is odd, and broadcast when even. Then there are 2 recv() thread, waiting for signal. In case of signal, only one of the recv() thread ...
5
votes
3answers
288 views

When can a cond var be used to synchronize its own destruction/unmapping?

According to POSIX, It shall be safe to destroy an initialized condition variable upon which no threads are currently blocked. Further, the signal and broadcast operations are specified to ...
0
votes
1answer
128 views

Thread Synchronization - Maximum number of threads for a process

I was trying out a simple program with regard to thread synchronization using pthreads on a linux system. My program's source can be found at http://pastebin.com/5EWS68NL. The program essentially has ...
5
votes
3answers
872 views

Is mutex needed to synchronize a simple flag between pthreads?

Let's imagine that I have a few worker threads such as follows: while (1) { do_something(); if (flag_isset()) do_something_else(); } We have a couple of helper functions for ...
0
votes
4answers
535 views

Problem with thread synchronization and condition variables in C

I have three threads, one thread is the main and the other two are worker threads. The first thread, when there is work to be done wakes up one of the two threads. Each thread when awakened perform ...
3
votes
3answers
131 views

how to syncronize threads?

i used threads in this code. but when i execute this code in shell, some threads didn't print this line printf("\ti'm %dth thread:)", j); printf("\t%c %d %d %d \n", arr[j].op, arr[j].byte, ...
2
votes
2answers
360 views

Help needed for implementing a thread Monitoring Mechanism

I am working on a multithreaded middleware enviornment. The framework is basically a capturing and streaming framework. So it involves a number of threads. To give you all a brief idea of the ...
1
vote
3answers
250 views

What are the costs of a condition variable?

Assume that unused execution resources are available on the machine in question, i.e. not all CPUs are being utilized. If a thread is waiting on a condition variable, what are the costs associated ...

1 2