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)

21
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()); ...
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. ...
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 ?
9
votes
3answers
2k views

Does guarding a variable with a pthread mutex guarantee it's also not cached?

Consider a simple (global in my case) variable: int i; Somewhere this variable is accessed pthread_mutex_lock(i_mutex); if(i == other value) { do_something(); } pthread_mutex_unlock(i_mutex); ...
3
votes
4answers
5k views

Wake up thread blocked on accept() call

Sockets on Linux question I have a worker thread that is blocked on an accept() call. It simply waits for an incoming network connection, handles it, and then returns to listening for the next ...
14
votes
1answer
4k 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 ...
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 ...
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 ...
9
votes
3answers
14k views

Multiple arguments to function called by pthread_create()?

I need to pass multiple arguments to a function that I would like to call on a separate thread. I've read that the typical way to do this is to define a struct, pass the function a pointer to that, ...
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 ...
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 ...
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 ...
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 ...
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
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 ...
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?
0
votes
2answers
636 views

pthread create error in c++ [duplicate]

Possible Duplicate: pthread Function from a Class I am getting an error ("Can not convert .....") and I think the third argument in the pthread_create call is wrong. I know the type of the ...
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 ...
21
votes
3answers
14k 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 ...
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 ...
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?
10
votes
2answers
5k views

Cancelling a thread using pthread_cancel : good practice or bad

I have a C++ program on Linux (CentOS 5.3) spawning multiple threads which are in an infinite loop to perform a job and sleep for certain minutes. Now I have to cancel the running threads in case a ...
6
votes
5answers
10k views

Multiple-writer thread-safe queue in C

I am working on a multi-threaded C application using pthreads. I have one thread which writes to a a database (the database library is only safe to be used in a single thread), and several threads ...
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. ...
7
votes
4answers
4k views

condition variable - why calling pthread_cond_signal() before calling pthread_cond_wait() is a logical error?

It's written in POSIX threads tutorial https://computing.llnl.gov/tutorials/pthreads/ that it is a logical error. my question is why it is a logical error? In my program i need to use these signals, ...
5
votes
3answers
16k views

Signal handling in pthreads

I have created a pthread, and installed a signal handler inside that, same way as we do in main( ) function. The thread's signal handler is a separate function. Surprisingly, it is not working, that ...
5
votes
2answers
686 views

gcc 4.7 on linux pthreads - nontrivial thread_local workaround using __thread (no boost)

In C++11 you can have a non-trivial object with thread_local storage: class X { ... } void f() { thread_local X x = ...; ... } Unfortunately this feature hasn't been implemented in gcc yet ...
4
votes
5answers
636 views

Thread Wait For Parent

I am implementing a simple thread pool mechanism for my ubuntu server (for my multi-client anonymous chat program), and I need to make my worker threads sleep until a job (in the form of a function ...
2
votes
7answers
847 views

volatile and multithreading?

In the following code: #include <pthread.h> #include <unistd.h> #include <stdio.h> pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; int ready = 0; wait() { int i; do ...
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 ...
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 ...
11
votes
3answers
5k views

Is it possible to determine the thread holding a mutex?

Firstly, I use pthread library to write multithreading c program. Threads always hung by their waited mutexs. When I use the strace utility to find a thread is in FUTEX_WAIT status, I want to know ...
6
votes
3answers
2k views

pthread_cond_wait and mutex requirement

Why it is required to lock a mutex before calling pthread_cond_wait? Also, is it required to take a lock (on the same mutex) before calling pthread_cond_signal? thanks for your help.
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 ...
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/
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 ...
10
votes
1answer
9k views

How is stack size of process on linux related to pthread, fork and exec

guys. I have a question about the stack size of a process on Linux. Is this stack size determined at linkage time and is coded in the ELF file? I wrote a program which print its stack size by ...
9
votes
3answers
318 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 ...
6
votes
6answers
6k views

pthread-like windows manual-reset event

is there any easier solution in porting a windows manual-reset event to pthread, than a pthread conditional-variable + pthread mutex + a flag if event is set or unset?
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() ...
6
votes
3answers
5k views

Pthreads vs. OpenMP

I'm creating a multi-threaded application in C using Linux. I'm unsure whether I should use the POSIX thread API or the OpenMP API. What are the pros & cons of using either? Edit: Could ...
5
votes
4answers
2k views

Is Pthread library actually a user thread solution?

The title might not be clear enough because I don't know how to define my questions actually. I understand Pthread is a thread library meeting POSIX standard (about POSIX, see wikipedia: ...
9
votes
2answers
4k views

return() versus pthread_exit() in pthread start functions

The following program shows that we can use return() or pthread_exit() to return a void* variable that is available to pthread_join()'s status variable. (1) Should there be a preference for using one ...
3
votes
3answers
4k views

POSIX Threads: Condition Variables - what's the point?

I've been working with pthreads a fair bit recently and there's one little thing I still don't quite get. I know that condition variables are designed to wait for a specific condition to come true (or ...
9
votes
2answers
832 views

Are posix regcomp and regexec threadsafe? In specific, on GNU libc?

Two separate questions here really: Can I use regexes in a multithreaded program without locking and, if so, can I use the same regex_t at the same time in multiple threads? I can't find an answer on ...
5
votes
5answers
2k views

Multiple threads in C program

I'm writing a Unix application in C which uses multiple threads of control. I'm having a problem with the main function terminating before the thread it has spawned have a change to finish their work. ...
5
votes
5answers
5k views

Not locking mutex for pthread_cond_timedwait and pthread_cond_signal ( on Linux )

Is there any downside to calling pthread_cond_timedwait without taking a lock on the associated mutex first, and also not taking a mutex lock when calling pthread_cond_signal ? In my case there is ...
3
votes
3answers
873 views

Cast member function for create_pthread() call

I want to stop the warning server.cpp:823: warning: converting from 'void* (ClientHandler::)()' to 'void ()(void)' in the call: pthread_create(th, NULL, (void* (*)(void*)) ...
2
votes
3answers
4k views

Using pthread.h on a windows build

I have a codebase that makes extensive use of pthread.h. On a windows visual studio project, this obviously doesn't work since pthreads is a unix utility. I know there exists pthread-win32 or ...
0
votes
6answers
579 views

Using a class function in int main()

I am having problems calling my functions from my main program. These functions HAVE to be in my class. How do I access them from my int main()? #include <iostream> #include <stdio.h> ...

1 2 3 4 5 8