Pthreads (POSIX Threads) is a standardised C-based API for creating and manipulating threads on a POSIX-compliant system. It is defined by the standard "POSIX.1c, Threads extensions (IEEE Std 1003.1c-1995)", and subsequently by the Single Unix Specification.

learn more… | top users | synonyms (1)

45
votes
5answers
16k views

Why do pthreads’ condition variable functions require a mutex?

I’m reading up on pthread.h; the condition variable related functions (like pthread_cond_wait(3)) require a mutex as an argument. Why? As far as I can tell, I’m going to be creating a mutex just to ...
34
votes
2answers
10k views

gcc - significance of -pthread flag when compiling

In various multi threaded C and C++ projects I've seen the -pthread flag applied to both the compiling and linking stage while others don't use it at all and just pass -lpthread to the linking stage. ...
34
votes
4answers
6k views

POSIX threads and signals

I've been trying to understand the intricacies of how POSIX threads and POSIX signals interact. In particular, I'm interested in: What's the best way to control which thread a signal is delivered to ...
26
votes
3answers
20k views

Pthread and wait conditions

I'm learning pthread and wait conditions. As far as I can tell a typical waiting thread is like this: pthread_mutex_lock(&m); while(!condition) pthread_cond_wait(&cond, &m); // ...
25
votes
6answers
57k views

undefined reference to pthread_create in linux (c programming)

I'm interested in learning to write C programs which use threads. I picked up the following demo off the web from https://computing.llnl.gov/tutorials/pthreads/ #include <pthread.h> #include ...
25
votes
5answers
23k views

pthreads mutex vs semaphore

What is the difference between semaphores and mutex provided by pthread library ?
22
votes
4answers
19k views

pthread Function from a Class

Lets say i have a class such as class c{... void *print(void *){ cout << "Hello"; } } And then i have a vector of c vector<c> classes; pthread_t t1; classes.push_back(c()); ...
21
votes
5answers
1k views

Forcing a spurious-wake up in Java

This question is not about, whether spurious wakeups actually happy, because this was already discussed in full length here: Do spurious wakeups actually happen? Therefore this is also not about, why ...
21
votes
3answers
15k views

gcc: Do I need -D_REENTRANT with pthreads?

On Linux (kernel 2.6.5) our build system calls gcc with -D_REENTRANT. Is this still required when using pthreads? How is it related to gcc -pthread option? I understand that I should use -pthread ...
20
votes
4answers
9k views

Parallelization: pthreads or OpenMP?

Most people in scientific computing use OpenMP as a quasi-standard when it comes to shared memory parallelization. Is there any reason (other than readability) to use OpenMP over pthreads? The ...
20
votes
7answers
6k views

C Programming: Debugging with pthreads

One of the hardest things for me to initially adjust to was my first intense experience programming with pthreads in C. I was used to knowing exactly what the next line of code to be run would be and ...
19
votes
2answers
13k views

What is the Re-entrant lock and concept in general?

I am always get confused . Would someone example what Reentrant means in different contexts? And why would you want to use reentrant vs. non-reentrant. Say pthread (posix) locking primitives, are ...
19
votes
2answers
9k views

cmake and libpthread

I'm ruinning on RHEL 5.1 and use gcc. How I tell cmake to add -pthread to compilation and linking?
18
votes
5answers
8k views

gdb: Cannot find new threads: generic error

When I run GDB against a program which loads a .so which is linked to pthreads, GDB reports error "Cannot find new threads: generic error". Note that executable that I run is not linked with ...
18
votes
3answers
11k views

Can I set the name of a thread in pthreads / linux?

Is there any way of setting the name of a thread in linux ? My main purpose is it would be helpful while debugging, and also nice if that name was exposed through /proc/
18
votes
10answers
15k views

How to print pthread_t

Searched, but don't come across a satisfying answer. I know there's no a portable way to print a pthread_t. How do you do it in your app? Update: Actually I don't need pthread_t, but some small ...
17
votes
4answers
2k views

What is the difference between Go's multithreading and pthread or Java Threads?

What is the difference between Go's multithreading approach and other approaches, such as pthread, boost::thread or Java Threads?
17
votes
2answers
25k views

How do I get a thread ID from an arbitrary pthread_t?

I have a pthread_t, and I'd like to change its CPU affinity. The problem is that I'm using glibc 2.3.2, which doesn't have pthread_setaffinity_np(). That's OK, though, because pthread_setaffinity_np() ...
17
votes
4answers
4k views

Existing threadpool C implementation

What open-source implementation(s) in C for a pthreads thread pool would you recommend ? Additional points if this implementation is : Light-weight: glib, APR, NSPR and others come with a big ...
16
votes
3answers
8k views

Still Reachable Leak detected by Valgrind

All the functions mentioned in this block are library functions. How can I rectify this memory leak? It is listed under the "Still reachable" category. (There are 4 more, which are very similar, but ...
16
votes
11answers
8k views

Using C/Pthreads: do shared variables need to be volatile?

In the C programming language and Pthreads as the threading library; do variables/structures that are shared between threads need to be declared as volatile? Assuming that they might be protected by a ...
16
votes
4answers
24k views

Kill Thread in Pthread Library

I use pthread_create(&thread1, &attrs, //... , //...); and need if some condition occured need to kill this thread how to kill this ?
16
votes
3answers
2k views

Why does pthread_cond_wait have spurious wakeups?

To quote the man page: When using condition variables there is always a Boolean predicate involving shared variables associated with each condition wait that is true if the thread should proceed. ...
16
votes
3answers
4k views

Why is a pthread mutex considered “slower” than a futex?

Why are POSIX mutexes considered heavier or slower than futexes? Where is the overhead coming from in the pthread mutex type? I've heard that pthread mutexes are based on futexes, and when ...
15
votes
5answers
9k views

PThread vs boost::thread?

Having no experience with threading in the past, which threading technique in C++ will be the easiest for a beginner? boost::thread or pthreads?
15
votes
9answers
12k views

Overhead of pthread mutexes?

I'm trying to make a C++ API (for Linux and Solaris) thread-safe, so that its functions can be called from different threads without breaking internal data structures. In my current approach I'm using ...
15
votes
3answers
24k views

Can I get C's pthread.h to compile in Windows?

If I try to compile a program with #include <pthread.h> in it, I get the error: pthread.h: No such file or directory Is it possible to get this to compile in a Windows environment? I am ...
15
votes
2answers
385 views

Race condition in glibc/NPTL/Linux robust mutexes?

In a comment on the question Automatically release mutex on crashes in Unix back in 2010, jilles claimed: glibc's robust mutexes are so fast because glibc takes dangerous shortcuts. There is no ...
14
votes
3answers
4k views

Calling pthread_cond_signal without locking mutex

I read somewhere that we should lock the mutex before calling pthread_cond_signal and unlock the mutext after calling it: The pthread_cond_signal() routine is used to signal (or wake up) another ...
14
votes
2answers
19k views

How to increase thread priority in pthreads?

I am using pthread in Linux. I would like to increase the thread priority by setting the parameters sched_param.priority. However, I could not find much info from the net regarding the range of the ...
14
votes
4answers
14k views

How do you query a pthread to see if it is still running?

In my destructor I want to destroy a thread cleanly. My goal is to wait for a thread to finish executing and THEN destroy the thread. The only thing I found about querying the state of a pthread is ...
14
votes
1answer
5k 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 effect. Is there ...
14
votes
3answers
22k views

How to sleep or pause a PThread in c on Linux

I am developing an application in which I do multithreading. One of my worker threads displays images on the widget. Another thread plays sound. I want to stop/suspend/pause/sleep the threads on a ...
14
votes
3answers
5k views

POSIX cancellation points

Can anyone point me towards a definitive list of POSIX cancellation points? I was just about to answer a question on stackoverflow and realised I didn't know my stuff well enough! In particular, are ...
14
votes
1answer
3k views

Cost of context switch between threads of same process, on Linux

Is there any good empirical data on the cost of context switching between threads of the same process on Linux (x86 and x86_64, mainly, are of interest)? I'm talking about the number of cycles or ...
13
votes
7answers
14k views

Best way to start a thread as a member of a C++ class?

I'm wondering the best way to start a pthread that is a member of a C++ class? My own approach follows as an answer...
13
votes
20answers
2k views

Which parallel programming APIs do you use?

Trying to get a grip on how people are actually writing parallel code currently, considering the immense importance of multicore and multiprocessing hardware these days. To me, it looks like the ...
13
votes
8answers
11k views

Non-blocking pthread_join

Is there a way of doing a non-blocking pthread_join? Some sort of timed join would be good to. I'll try to clarify the question: I'm coding the shutdown of a multithreaded server. If everything goes ...
13
votes
1answer
5k views

When to use pthread_cancel and not pthread_kill

When does one use pthread_cancell and not pthread_kill?
13
votes
3answers
5k views

How do I determine if a pthread is alive?

How do I determine if a detached pthread is still alive ? I have a communication channel with the thread (a uni-directional queue pointing outwards from the thread) but what happens if the thread ...
13
votes
3answers
2k views

Equivalent of SetThreadPriority on Linux (pthreads)

Given the following bit of code, I was wondering what the equivalent bit of code would be in linux assuming pthreads or even using the Boost.Thread API. #include <windows.h> int main() { ...
13
votes
3answers
3k views

Do pthread Mutexs work across threads if in shared memory?

I found this: http://stackoverflow.com/questions/2284730/fast-interprocess-synchronization-method I used to believe that a pThread mutex can only be shared between two thraeds in the same address ...
13
votes
4answers
1k views

How to profile pthread mutex in linux?

I would like to know how to profile a pthread mutex to see if there are any locking contention points in my code. (who likes contentious code, right? :) I know how to do a more general profiling of ...
13
votes
5answers
390 views

Is it always safe to convert an integer value to void* and back again in POSIX?

This question is almost a duplicate of some others I've found, but this specifically concerns POSIX, and a very common example in pthreads that I've encountered several times. I'm mostly concerned ...
12
votes
5answers
7k views

Is PThread a good choice for multi-platorm C/C++ multi-threading program?

Been doing mostly Java and smattering of .NET for last five years and haven't written any significant C or C++ during that time. So have been away from that scene for a while. If I want to write a C ...
12
votes
2answers
4k views

pthread synchronized blocking queue

I'm looking for a recommended implementation of a thread-safe blocking queue (multi producer/consumer) in C using pthread synchronization semantics.
12
votes
4answers
2k views

When is pthread_spin_lock the right thing to use (over e.g. a pthread mutex)?

Given that pthread_spin_lock is available, when would I use it, and when should one not use them ? i.e. how would I decide to protect some shared data structure with either a pthread mutex or a ...
12
votes
1answer
4k views

How to prevent writer starvation in a read write lock in pthreads

I have some questions regarding read write locks in POSIX Pthreads on a *nix system, say Linux for example. I wish to know what is the default bias for read write lock i.e does it prefer reads over ...
12
votes
3answers
6k views

pthread_join() and pthread_exit()

I have a question about C concurrency programming. In the pthread library, the prototype of pthread_join is int pthread_join(pthread_t tid, void **ret); and the prototype of pthread_exit is: void ...
12
votes
2answers
638 views

race-condition in pthread_once()?

I have a std::future in one thread which is waiting on a std::promise being set in another thread. EDIT: Updated the question with an exemplar app which will block forever: UPDATE: If I use a ...

1 2 3 4 5 56