Tagged Questions
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. The API is mostly covered by the <pthread.h> header documented at http://pubs.opengroup.org/onlinepubs/007908799/xsh/pthread.h.html
24
votes
3answers
2k 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 ...
18
votes
5answers
530 views
Forcing a spurious-wake up in Java
This question is not about whether spurious wake-ups actually happen, because this was already discussed in full length here: Do spurious wakeups actually happen? Therefore this is also not about, why ...
16
votes
6answers
5k 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 ...
14
votes
3answers
602 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 ...
14
votes
3answers
944 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?
14
votes
6answers
3k 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 ...
14
votes
3answers
6k 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 ...
13
votes
1answer
950 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
2answers
2k 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.
...
13
votes
3answers
9k 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 ...
12
votes
19answers
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 ...
11
votes
4answers
143 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 ...
11
votes
3answers
325 views
Tool for tracing and visualisation of pthread behaviour in Linux
I am eager to find a tool that allows me to trace the behaviour of the pthreads in a program I am working on. I am aware that there where similar questions asked before, see here and here .
As it ...
11
votes
5answers
427 views
Problem supporting keep-alive sockets on a home-grown http server
I am currently experimenting with building an http server. The server is multi-threaded by one listening thread using select(...) and four worker threads managed by a thread pool. I'm currently ...
11
votes
4answers
536 views
Is fork (supposed to be) safe from signal handlers in a threaded program?
I'm really uncertain about the requirements POSIX places on the safety of fork in the presence of threads and signals. fork is listed as one of the async-signal-safe functions, but if there is a ...
11
votes
3answers
11k views
pthreads mutex vs semaphore
What is the difference between semaphores and mutex provided by pthread library ?
10
votes
3answers
687 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 ...
10
votes
13answers
2k views
check for threads still running after program exits
gcc 4.4.3 c89 pthreads
I use valgrind for checking memory errors.
I am just wondering if there is any tool for linux that can detect running threads that haven't been terminated after the program ...
10
votes
3answers
1k 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 ...
10
votes
7answers
5k 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?
UDP:
Actually I don't need pthread_t, but some small ...
10
votes
5answers
5k 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 ...
10
votes
3answers
2k 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 ...
9
votes
3answers
250 views
How to write dead simple native SERVER program (not app) for Android devices?
First of all, I believe, it's not a duplicate question. I don't want to write a native app with NDK, I just want to use Android device as a cheap Linux server. Server, in this context, means a ...
9
votes
3answers
180 views
Can a correct fail-safe process-shared barrier be implemented on Linux?
In a past question, I asked about implementing pthread barriers without destruction races:
How can barriers be destroyable as soon as pthread_barrier_wait returns?
and received from Michael Burr ...
9
votes
4answers
783 views
When I kill a pThread in C++, do destructors of objects on stacks get called?
I'm writing a multi-threaded C++ program. I plan on killing threads. However, I am also using a ref-counted GC. I'm wondering if stack allocated objects get destructed when a thread gets killed.
9
votes
1answer
2k 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 ...
9
votes
5answers
2k views
How to measure mutex contention?
I have some threaded code using PThreads on Linux that, I suspect, is suffering from excessive lock contention. What tools are available for me to measure this?
Solaris has DTrace and plockstat. Is ...
9
votes
2answers
13k 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() ...
9
votes
11answers
5k 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 ...
8
votes
3answers
159 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 ...
8
votes
2answers
255 views
How can barriers be destroyable as soon as pthread_barrier_wait returns?
This question is based on:
When is it safe to destroy a pthread barrier?
and the recent glibc bug report:
http://sourceware.org/bugzilla/show_bug.cgi?id=12674
I'm not sure about the semaphores ...
8
votes
2answers
256 views
What happens if a signal handler is invoked while at a cancellation point?
Suppose an application is blocked at a cancellation point, for example read, and a signal is received and a signal handler invoked. Glibc/NPTL implements cancellation points by enabling asynchronous ...
8
votes
2answers
650 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
...
8
votes
6answers
777 views
concurrent linked list
I am trying to design a linked list in c++ that allows concurrent access. Clearly using a single lock for this list is grossly inefficient since disjoint areas may be updated in parallel. Now what are ...
8
votes
5answers
918 views
linux pthread_suspend
Looks like linux doesnt implement pthread_suspend and continue, but I really need em.
I have tried cond_wait, but it is too slow. The work being threaded mostly executes in 50us but occasionally ...
8
votes
3answers
2k views
Wait on multiple condition variables on Linux without unnecessary sleeps?
I'm writing a latency sensitive app that in effect wants to wait on multiple condition variables at once. I've read before of several ways to get this functionality on Linux (apparently this is ...
8
votes
3answers
2k views
How can you find the processor number a thread is running on?
I have a memory heap manager which partitions the heap into different segments based on the number of processors on the system. Memory can only be allocated on the partition that goes with the ...
8
votes
5answers
2k views
Does pthreads provide any advantages over GCD?
Having recently learned Grand Central Dispatch, I've found multithreaded code to be pretty intuitive(with GCD). I like the fact that no locks are required(and the fact that it uses lockless data ...
8
votes
3answers
2k 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 ...
8
votes
3answers
12k 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 ...
8
votes
14answers
3k views
How to join a thread that is hanging on blocking IO?
I have a thread running in the background that is reading events from an input device in a blocking fashion, now when I exit the application I want to clean up the thread properly, but I can't just ...
7
votes
2answers
159 views
What could cause my program to not use all cores after a while?
I have written a program that captures and displays video from three video cards. For every frame I spawn a thread that compresses the frame to Jpeg and then puts it in queue for writing to disk. I ...
7
votes
5answers
203 views
Pthreads - High memory usage
I am programming something in C that creates a lot of Pthreads in Linux on a 256Mb system. I usually have +200Mb free.
When I run the program with a low amount of threads it works, but once I make it ...
7
votes
2answers
243 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 ...
7
votes
1answer
144 views
Implementing cancellable syscalls in userspace
I'm working on implementing pthread cancellation on Linux without any of the "unpleasant behavior" (some might say bugs) discussed in some of my other recent questions. The Linux/glibc approach to ...
7
votes
1answer
294 views
Why POSIX Threads are Slower Than OpenMP
I'm running a completely parallel matrix multiplication program on a Mac Pro with a Xeon processor. I create 8 threads (as many threads as cores), and there are no shared writing issues (no writing to ...
7
votes
4answers
699 views
Running a C program with multiple threads in the background when it requires user input
I've made a fairly simple C program to compute the terms of Fibonacci sequence, which I'm running on Ubuntu. I made some rather clumsy data structures so that it can do very large integers, but the ...
7
votes
3answers
359 views
Good book/Resource for pThreads (Absolute Beginner)?
I am interested in going into concurrency and multi-threading in general. I have no idea about this field at all. I was wondering if someone could suggest a good book or a good online tutorial, or a ...
7
votes
3answers
261 views
Does POSIX guarantee signals will not be delivered to a partially-initialized thread?
On most implementations of POSIX threads, some initialization is required in the newly-created thread before it is in a consistent state able to run application code. This may involve unlocking locks ...
7
votes
1answer
304 views
How are POSIX cancellation points supposed to behave?
I've been looking at glibc/nptl's implementation of cancellation points, and comparing it to POSIX, and unless I'm mistaken it's completely wrong. The basic model used is:
int oldtype = ...