0
votes
1answer
19 views

Output for sample code for an upcoming exam concerning pthread

pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t cond = PTHREAD_COND_INITIALIZER; int token = 2; int value = 3; void * red ( void *arg ) { int myid = * ((int *) arg); ...
1
vote
3answers
43 views

Mutex when returning object value

If I understand how C++ compilers handle local variables then IsShutdownInProgress() does not need any locking since the shutdownInProgress static variable will be placed on the stack. Am I correct? ...
-2
votes
1answer
30 views

Basic deadlock issue, one mutex in multiple functions

I'm writing a program in C and which has 3 functions in it, A, B and C. I have a static mutex as global which is locking access to these functions. The functions A, B and C and be called in any order ...
0
votes
2answers
40 views

Mutex to read-only variable

The Language is C and my app has multiple threads. I have an int array that its values can be changed and i have mutex to read and write its values. But since the base address of the array (like ...
0
votes
1answer
49 views

Difference between Boost and Pthread condition variables

I found some code using boost threads, mutexes and condition variables but I wanna try to rewrite this code with posix threads. This is the Boost code, I´ve found here: void push(Data const& ...
1
vote
1answer
65 views

Is mutex in pthread library in c++ the same like synchronized keyword from Java

Is mutex in pthread library in c++ the same like synchronized keyword from Java (whatever call functions I put inside is thread safe)? I have list of cities pthread_t thread1; class City{ ...
0
votes
1answer
19 views

pthread_mutex not updating fast enough, so one thread “hogs” the lock.

I have a c++ program where I'm creating multiple threads and having them access a shared array. Everytime I want one thread to access the array, I call pthread_mutex_lock(&mutex); access the ...
1
vote
1answer
41 views

One thread showing interest in another thread (consumer / producer)

I would like to have to possibility to make thread (consumer) express interest in when another thread (producer) makes something. But not all the time. Basically I want to make a one-shot consumer. ...
1
vote
1answer
47 views

How can I block a pthread to print a global variable from main and then continue the pthread?

I have a main function that creates a pthread. I am trying to print a global variable at a selective time using semaphores (NOTE- mutex, s1, s2, and memoryUsed all declared globally): int main(int ...
-1
votes
3answers
116 views

Make thread loop for 5 iterations; pthreads, mutex, and semaphors

I have this code in an example for my class, and the instructions from the teacher say to "make each thread loop for 5 iterations". I am confused as to how to do that, wtih this code: #include ...
3
votes
2answers
71 views

Using mutex for pthread results in random answer

I have written a simple pthread code which #include <pthread.h> #include <stdio.h> #include <math.h> #define ITERATIONS 500 // A shared mutex pthread_mutex_t mutex; int target; ...
0
votes
0answers
22 views

getting the mutex variable from strace

I am using strace to get information about my application. I am interested in function for threading like the one below. futex(0xf70d34, FUTEX_WAIT_PRIVATE, 23853, NULL <unfinished ...> If ...
0
votes
1answer
30 views

Is there a pthreads API that identifies the handle of a mutex owner?

Is there a pthreads API that identifies the handle of a mutex owner? I would rather use the pthread API instead of build my own structure and lock/unlock API on the pthreads API. I am using the C ...
1
vote
0answers
49 views

Mixing boost mutexes with native threads?

I have some code that uses native threads. I'd like to modify a tiny fraction of it, but use some boost features. In particular, I'd like to use boost::mutex::scoped_lock() and boost::condition's ...
1
vote
2answers
122 views

pthread broadcast and then wait?

I'm trying to set up several threads to sit in a wait state until they receive a pthread_cond_broadcast(). After completing a job, I want the threads to go back into their wait states. I also want ...
0
votes
0answers
49 views

pthread_mutex_lock and cancellation point

is there a reason why a pthread_mutex_lock is not a cancellation point. I thought it was because you can have some case where the mutex is never unlocked by another thread and then the cancel is never ...
-2
votes
3answers
79 views

mutex_init() causes weird segfault

I'm blocking on a weird issue trying to deal with posix threads. I'll start with the code: #include <pthread.h> #include <semaphore.h> typedef struct { pthread_mutex_t *mutex; } ...
0
votes
2answers
61 views

thread_cancel and blocking function as cond_wait

I have my main process send pthread_cancel to another thread which is waiting for a condition to happen with cond_wait(&condition). On the pthread_cancel they are saying : Deferred cancel ability ...
1
vote
2answers
35 views

cond_broadcast and scheduling order

I am writing a producer/consumers program. I have 3 consumers reading from a queue and one producer writing in the queue. When the producer write something in the queue it broadcasts it using ...
2
votes
1answer
65 views

Is there a mechanism to try to lock one of several mutexes?

How can a program try to lock multiple mutexes at the same time, and know which mutex it ended up unlocking. Essentially, I am looking for is an equivalent of select() but for mutexes. Does such a ...
0
votes
1answer
76 views

Let me make sure I understand C pthread mutex

I have a global variable flag, a function this(), and a function that(). Now, main(), this() and that() all have occasions where they need to read and/or write flag. To properly use a mutex I would ...
-1
votes
2answers
66 views

Weird printf/pthread error?

So I'm working on a threads project and I'm testing one of my files, making sure the structs and fields are getting the correct values. I am running this function: struct ReportQueue { sem_t ...
9
votes
2answers
245 views

Safe to mix std::mutex and pthread_create?

Is it safe to mix pthread.h and the C++11 multi-threading constructs? This might be platform dependent, so let's assume it only runs on Debian Linux. Can I spawn a thread with pthread_create and use ...
0
votes
1answer
108 views

Why pthread_mutex_t can't be static field of class ? [duplicate]

I have problem with pthread_mutex_t. When I try to create static field pthread_mutex_t, then initialize it in static function and finally use it within some class methods I get many errors like: ...
0
votes
1answer
58 views

single byte write by multiple threads in SMP without using lock

I have a multi-threaded application which has to run in SMP envirnoment, where I am writing (no read-modify-write) to single (or word-length) byte global memory from multiple threads. Can I do this ...
2
votes
1answer
126 views

How can I block threads until prime is found, unblock it, then have them wait until next prime?

I am writing a multithreaded Sieve of Eratosthenes where I have to use pthreads. I'm pretty sure the way to do this is to use mutexes and cond_waits. I create 4 threads in the beginning of the ...
3
votes
1answer
67 views

Can I remap a shared POSIX mutex while it is locked?

Assume that the shared POSIX mutex has allready been initialized (using PTHREAD_PROCESS_SHARED). Then, consider the following procedure: typedef struct { pthread_mutex_t mutex; // ... } ...
3
votes
1answer
87 views

Mutex locking numerous times

As far as I know, mutexes should lock once and then block others until freed, like this. But with my code, it seems like multiple threads are locking the same mutex. I have a thread pool of 10, so ...
0
votes
1answer
57 views

C pthread_cond_broadcast seems to be broadcasting to all cond variables

I have an array of structs. Each struct is as below. struct thread_st { pthread_t thr; int conn; pthread_mutex_t mutex; pthread_cond_t cond; }; conn indicates if the thread has ...
0
votes
1answer
76 views

PThread Mutex Not Working as Hoped

I'm using mutexes to try to restrict access to certain part of the codes to one thread, but instead of locking once and blocking the others, it seems to allow all threads to "lock". Following is my ...
0
votes
0answers
117 views

Thread synchronization using mutexes and condition variables

I am working on a project for my operating systems class. Here is the project webpage with required files. Essentially, I need to use synchronization primitives like pthread_mutex_t and ...
0
votes
1answer
31 views

Will pthread_mutex calls switch context to kernel?

When locking and unlocking mutexes ( Im using pthread mutexes ) will there be any context switch to kernel which degrades the performance.
1
vote
3answers
205 views

Does pthread_cond_wait(&cond_t, &mutex); unlock and then lock the mutex?

I m using pthread_cond_wait(&cond_t, &mutex); in my program and I m wondering why this function need as a second parameter a mutex variable. Does the pthread_cond_wait() unlock the mutex at ...
0
votes
3answers
123 views

Mutex lock threads

Am new to multi threaded/processs programming. So here's what I need to clarify. Process A code pthread_mutex_lock() pthread_create(fooAPI(sharedResource)) //fooAPI creates another thread with ...
0
votes
2answers
75 views

make several threads with mutex and different lifetimes

void process(int number, int time) { printf("Prosess %d kjører\n", number); sleep(time); printf(" Prosess %d terminated after %d sekunder\n", number, time); } int main(void) { pid_t ...
2
votes
0answers
75 views

Unexplainable pthread mutex deadlock [duplicate]

There seems to be a deadlock in my application caused by a particular mutex. However, the code clearly unlocks the mutex almost immediately after it is locked, and there are no other mutex ...
0
votes
1answer
305 views

Synchronizing two pthreads using mutex in C

Need help with synchronizing two threads with mutex. Iam new to C and mutexes and Im not sure what to do here. The code has two threads that counts to ten and prints out each number, but is not synch, ...
0
votes
2answers
143 views

is it necessary to call pthread_mutex_destroy on a mutex?

I am using pthread_mutex_t in a C++ program, as follows: class Mutex : public noncopyable { public: Mutex() { pthread_mutex_init(&m_mutex, NULL); } void acquire() { ...
2
votes
1answer
129 views

Use of pthread increases execution time, suggestions for improvements

I had a piece of code, which looked like this, for(i=0;i<NumberOfSteps;i++) { for(k=0;k<NumOfNodes;k++) { mark[crawler[k]]++; r = rand() % ...
1
vote
3answers
131 views

Should I use spin_lock or mutex_lock for this particular situation?

In my Linux app, I have two threads that both try to send a UDP broadcast packet (around 50-500 bytes) using the same UDP client socket. They do this about once every 2-3 seconds. In this case, around ...
1
vote
2answers
69 views

What are the default mutex attributes?

From man page : The pthread_mutex_init() function shall initialize the mutex referenced by mutex with attributes specified by attr. If attr is NULL, the default mutex attributes are used; ...
2
votes
1answer
175 views

Does “pthread_mutex_t mutex = {0}” initialize mutex?

Is it possible to initialize mutex in this way: pthread_mutex_t mutex = {0}; What is the difference between the following 3 initialization of mutex: 1) pthread_mutex_init(&mutex, NULL); 2) ...
0
votes
2answers
48 views

Handing off a piece of work to a thread and waiting for it to accept

My application works as follows: the worker-threads initialize and begin waiting in pthread_cond_wait() the main thread connects to DB and starts handing over one row at a time to the proper worker ...
0
votes
1answer
33 views

mutex works on code segment or variables in a code segment?

I am confused as to mutex works on code segment or variables in a code segment. In the example below, mutex will prevent two threads trying to access mysum at the same time either from func1 or func2 ...
1
vote
2answers
222 views

PTHREAD_MUTEX_INITIALIZER vs pthread_mutex_init ( &mutex, param)

Is there any difference between pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; Or pthread_mutex_t lock; pthread_mutex_init ( &lock, NULL); Am I safe enough if I use only the first method ...
0
votes
2answers
114 views

Condition Variable with Mutex lock demonstration program hangs

Idea: When the thread A needs to check the state of the condition variable x, it will first hold the mutex lock then check the variable's state, if found invalid, it will start waiting. There will ...
1
vote
1answer
40 views

Threaded Socket Server Private Message

I've been delving recently into threaded socket servers. Unfortunately I have yet to find the code wherein a user can PM or private message another. Since each is connected via a thread I've been ...
2
votes
1answer
214 views

CLOCK_MONOTONIC and pthread_mutex_timedlock / pthread_cond_timedwait

The pthread_mutex_timedlock documentation says that abs_timeout takes a CLOCK_REALTIME. However, we all know that it is inappropriate for timing a specific duration (due to system time adjustments). ...
0
votes
1answer
35 views

Mutexes available from all the threads

My question is this i have this piece of code: #include<stdio.h> #include<semaphore.h> #include<pthread.h> int number; pthread_mutex_t mutex[number]; pthread_t ...
1
vote
3answers
164 views

Mutex for dynamically allocated memory in C

I am reading Thread Synchronization from the book Advance Programming in unix environment. In this section, there is a example to use mutex with dynamically allocated object. I have some doubts in ...

1 2 3 4 5 6