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)

0
votes
2answers
78 views

msgget unable to join the mq

I am using SysV for sending/receiving messages. Inside the thread function of my Server class is where I create the key and MQ. This is done successfully and the mqID of the new MQ is stored in a ...
1
vote
0answers
47 views

Starting and stopping a daemon containing kernel threads

I want to run a c++ program that is using POSIX threads on openSUSE 12 as a daemon, and be able start, stop and restart it as a service with a normal init.d script based on this template: ...
0
votes
1answer
66 views

Calling a C program from the function in pthread_create

We are trying to implement a Process scheduling code for Round Robin process as part of our project. As part of trying to implement the code,we need to processes which we then need to schedule ...
7
votes
3answers
159 views

Different execution orders cause differences in performance of a Pthread program

This is my first post on stackoverflow and my native language is not English. Please excuse me for any inconvenience this post brings to you. Maybe it's a little long, so I am looking forward to your ...
5
votes
2answers
149 views

Is std::async broken in gcc 4.7 on linux? [closed]

I'm testing std::async in isolation before using it in real code, to verify that it works correctly on my platform (which is ubuntu 12.10 64-bit). It works (somewhat rarely) and usually just hangs. ...
0
votes
0answers
45 views

Multiple Keys in threads

For my program, when a client joins a MQ that was created by a server, the server starts a thread and in that thread will create a private MQ that only one specific client will have the key to. When ...
1
vote
1answer
58 views

Thread function timing

When you create a thread does it automatically start the thread function that's in the parameter? I'm using iret1 = pthread_create(&client[i++].tID, NULL, thread_function, NULL); ...
0
votes
2answers
97 views

`pthread_mutex_trylock` and `pthread_mutex_lock` behaviour

This is a follow up to this question. In that code, when I was not using fflush(stdout) output was not flushed to the screen when I kept sleep(1). #define S sleep(0) void* xThread_fn(void* arg) ...
0
votes
1answer
52 views

Segfault resulting from pthread?

I have been beating my head on a wall for a several hours now trying to find what is causing this segfault. I have found that the segfault occurs consistantly on the pthread_mutex_lock(lock) line ...
0
votes
1answer
29 views

Why isn't my string being passed properly to this thread-invoked function?

I am working on a multithreaded application in which a client program generates request threads that send strings to a data server program, which answers by sending strings back. Unfortunately, I am ...
1
vote
1answer
135 views

Does sleep() interfere with scanf()?

I have two threads xThread : Continuously Prints X on the console inputThread: Gets input from the stdin The continuous printing stops when the user enters 'C' or 'c' #include<stdio.h> ...
3
votes
2answers
73 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
24 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
27 views

pthread_create does nothing when called from a wrapper function

I'm trying to implement a threaded object like this: #include <pthread.h> #include <iostream> class Thread { private: int id; static void * run(void * arg) { int tid ...
1
vote
1answer
52 views

How to change the count of a pthread_barrier?

The problem is that we have to implement a kind of "running-contest" using pthreads. After one track we have to wait until all runners/threads are done until this point, so we use a barrier for that. ...
1
vote
3answers
71 views

C++ delete in daughter thread

It is my understanding that the function called when starting a thread inside an object should not be a class member. The best approach seems to be to launch a friend function, which gets you access ...
0
votes
1answer
63 views

concurrent readers and mutually excluding writers in C using pthreads

I was hoping if someone could forward me or show me a program that has multiple readers yet mutually excluding writers in C. I searched the entire internet for it, and could not find a single example ...
0
votes
1answer
65 views

Why does adding a thread make this simple socket server faster?

Here is my server code: #include <stdio.h> #include <arpa/inet.h> #include <errno.h> #include <sys/socket.h> #include <pthread.h> #define MY_PORT 843 #define MAXBUF ...
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 ...
0
votes
2answers
309 views

How to install PHP pthreads extension on Ubuntu [closed]

Let me clarify the question: I'm using Ubuntu 12.04.1 LTS. And I can upgrade if needed. I really don't want to compile anything from source. For example recompile PHP from source sounds like a ...
2
votes
3answers
82 views

how to terminate infinite loop (threading)

I have question about exiting the while loop. I'm writing code in which I'm creating two threads, which prints strings and main() part has to print dots(".") every 500 miliseconds. Can you please help ...
0
votes
4answers
118 views

pthread does not seem to use updated global data value

I am new to threads. I want to make two threads xthread prints 'X'; and ythread prints 'Z'; continuously until the user inserts 'C' or 'c' at stdin. I have made use of select to check if there is any ...
1
vote
2answers
72 views

Terminating a blocked pthreads thread

I Have a thread that reads data from a file descriptor, using select() to block until the data is available. When the program needs to terminate, I need to close the thread, however it's blocked on ...
1
vote
0answers
50 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
189 views

Multithreaded prime number generator

I have: input1: n to generate primes up to input2: no of threads to generate primes I implemented this and it works, but the problem is, that each thread generates its own list of primes [2, n]. ...
2
votes
2answers
155 views

Join threads in a() that were created in a previous call of a(). Is this possible?

SOLVED / SHORT ANSWER: Yes you can. Bug was somewhere else. Read on if you want to know where it was. I have to process items (do calculations that are independent between items). Items are processed ...
1
vote
1answer
74 views

Share 3D array between threads using pThreads

I am quite new in parallel programming and I am trying to parallelize an application using pThreads. I have a function that browse a 3D array, compute some things and store the result into another 3D ...
1
vote
1answer
78 views

threads have the same id

I learn threads. I have read that thread terminates after it is out of a function (that is passed as parameter to pthread_create function). So I create threads in the loop, they are executed and ...
0
votes
1answer
67 views

pthread_create b/w fork and exec

I wish to create a thread in a child process before the respective child process changes it's image using exec system call. However, seemingly, the pthread_create call is being overlooked. ...
1
vote
4answers
173 views

pthread passing object as argument to pthread_create

For the given program :: void start(void *n){ Node *obj = (Node *)n; cout << obj -> val; } int main(int argc, char *argv[]) { int i,n; cin >> n; Node *nodeObj; nodeObj ...
0
votes
2answers
51 views

DNS lookups using pthreads in C

I am writing a program that parses HTML, however, while it parses multiple HTML files, I need to perform DNS lookups on a collection of IPs. I was thinking to use pthreads for the lookups task. Would ...
1
vote
2answers
144 views

How can you get the Linux thread Id of a std::thread()

I was playing with std::thread and I was wondering how is it possible to get the thread id of a new std::thread(), I am not talking about std::thread::id but rather the OS Id given to the thread ( ...
0
votes
2answers
50 views

Confusion regarding pthread_exit freeing of automatic variables

According to this "If a thread calls pthread_exit, though, C++ doesn’t guarantee that destructors are called for all automatic variables on the thread’s stack. A clever way to recover this ...
1
vote
1answer
69 views

Multi thread Dead Lock - Producer & Customer module using pthread lib

Recently I'm investigate the pthread multi-thread lib and doing some example. I try to write a Producer-Customer Module: There's a queue to store the Producer's product, and can be get by the ...
0
votes
2answers
76 views

Sending signal to pthread to abort sleeping

I'm have a pthread function, which sleeps most of the time using usleep() I would like to send a signal from the main process to the thread to interrupt the sleeping sometimes. The problem is that I ...
1
vote
2answers
124 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 ...
1
vote
1answer
87 views

GCC compile fails with pthread and option std=c99

I have an exemplar program that fails to compile with -std=c99 any help appreciated #include <pthread.h> int main(void) { pthread_rwlock_t myLock; return 0; } output of the two ...
0
votes
2answers
81 views

Includes and Linking in C

I'm solving a simple Readers/Writers problem. I have 3 .c files and 3 .h files. parent.c: #include <pthread.h> #include <stdlib.h> #include <stdio.h> #include <semaphore.h> ...
1
vote
1answer
77 views

pthread in C, incompatible type

while compiling, i got this error expected 'union pthread_mutex_t *' but argument is type of 'pthread_mutex_t' 1) what is the difference between 'union pthread_mutex_t *' and 'pthread_mutex_t'? 2) ...
0
votes
0answers
50 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
80 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
62 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
36 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 ...
3
votes
1answer
139 views

What is the difference between PTHREAD_RECURSIVE_MUTEX_INITIALIZER and PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP?

When statically initializing a recursive mutex, what is the difference between static pthread_mutex_t foo_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER; and static pthread_mutex_t foo_mutex = ...
0
votes
3answers
124 views

LRU Caching & Multithreading

I have already made a post some time ago to ask about a good design for LRU caching (in C++). You can find the question, the answer and some code there: Better understanding the LRU algorithm I have ...
1
vote
1answer
149 views

c++11 #include <thread> gives compile error

I get a compile error when trying to create an object file from a compiled source file. I am using the header which came with c++11. I am also using a c++ pattern recognition library with several ...
2
votes
1answer
75 views

Concurrent server using datagrams

A client has to send 2 strings to a server and the server has to send back a string to the client and also treat clients in parallel. The 2 entities exchange data using datagrams under Unix. My ...
0
votes
0answers
86 views

pthread trylock causing deadlock situation

I am working in a context where a shared resource needs to be accessed by multiple different threads. One of the threads must do a non blocking write on the resource. To do so, I tried using ...
2
votes
3answers
195 views

Using GTK and C, how can I start/stop a long calculation (in a seperate thread) using a button?

Using GTK and C, how can I start/stop a long calculation (in a seperate thread) using a button? I have working code that does just that but I have little confidence that it isa reasonable method ...
0
votes
2answers
178 views

creating threads in C

Hello i am trying to run this C program using gcc -Wall -std=c99 hilo.c - ./a.out hilo.c and i am getting a this message: hilo.c: In function ‘func’: hilo.c:6:3: warning: format ‘%d’ expects ...

1 2 3 4 5 56