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.
0
votes
3answers
45 views
Terminate a thread that activates a process in the shell
Using pthreads, I created a thread that does audio recording through shell:
void *thread_function(void *arg) {
system("arecord data.wav");
}
However, when I call pthread_cancel(&thread_ID); ...
0
votes
2answers
83 views
Multiple producer multiple consumer thread issue
I have a program in which I am trying to implement a multiple-producer, multiple-consumer setting. I have code which seems to work well when I have one consumer and multiple producers, but introducing ...
1
vote
3answers
59 views
How can I pass the index of a for loop as the argument for pthread_create
I am using a for loop to create a number of threads and passing the index i as an argument as follows:
pthread_t p[count];
for (int i = 0; i < count; i++){
pthread_create(&p[i], NULL, ...
0
votes
3answers
80 views
Second thread doesn't run until first is completed
I'm trying to implement a producer/consumer type thing where the producer thread grabs characters out of a string and puts them in a circular linked list queue (5 nodes large) and the consumer thread ...
0
votes
2answers
49 views
pthread_join causes segmentation error (simple program)
I am just trying to work with multi-threaded programs, but I am having problems with the pthread_join function. The code below is just a simple program I am using to show pthread_join crashing. The ...
0
votes
2answers
64 views
multithreading process in C++, all threads are ended up without completion
I run the following code using pthread.h...
While run, before the thread finishes, the code exits...
I attached the code...
#include<iostream>
#include<pthread.h>
using namespace std;
...
0
votes
1answer
59 views
pthread_create does not work due to void pointer and integer conversion error
How/why do you convert to/from a void pointer or int?
The following code wrongly generates compiler errors:
while(num_producers > 0) {
pthread_t tid; // id of pthread (not used except to ...
0
votes
3answers
115 views
error: argument of type ‘void* (Thread::)(void*)’ does not match ‘void* (*)(void*)’
I'm doing to implement thread class for my own using pthread. So, I create Thread class as below :
class Thread
{
public:
Thread()
{
}
virtual void* run(void *params) = 0;
void ...
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
2answers
137 views
Obtaining thread Core affinity in C++ 11 through pthreads
I'm trying to set core affinity (Thread #1 goes on first core, Thread #2 goes on second core, ...) while using std::thread in C++ 11.
I've already searched around various topics and on the internet ...
0
votes
1answer
35 views
How to open new cmd connected to the main cmd in C
I am pretty new to parallel programming. In my C program, I need to display my statistical data on the terminal which is different than the main one.
I mean:
I am implementing a simple text editor. ...
0
votes
1answer
56 views
Segmentation Fault on strtol with in pthread function
I am getting a "Segmentation Fault 11" on the following block of code inside of a pthread:
void *func(void *len){
char *temp = len;
size = (int) strtol(temp, (char **)NULL, 10); // this ...
0
votes
1answer
56 views
critical section definition
in this example code below, where is the "critical section" exatly?. after "sem_wait()" ?
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
...
0
votes
3answers
113 views
type casting integer to void* [duplicate]
#include <stdio.h>
void pass(void* );
int main()
{
int x;
x = 10;
pass((void*)x);
return 0;
}
void pass(void* x)
{
int y = (int)x;
printf("%d\n", y);
}
output: 10
my ...
4
votes
1answer
107 views
C++ 11 alternative pthread_cond_timedwait
I need to make a thread waiting until either
a timeout is expired, or
a variable is changed by another thread
After some research I've found out pthreads got pthread_cond_timedwait which could be ...
1
vote
2answers
51 views
can more than one thread operate the same database?
A scenario I can't understand:
A process called DBserver has five threads, each threads has one connection to the Mysql database. Every time we want to execute a sql, we send it to DBserver, then ...
0
votes
0answers
28 views
is it possible to schedule a kernel thread to a specific core
In linux it is possible to schedule a pthread to a specific processor core using set_affinity() function. is it possible to schedule a kernel thread to a specific core somehow. if yes, is it possible ...
1
vote
0answers
67 views
pthreads in c++ arguments issue
I am using pthread for multithreading in my application as
pthread_create(&id1, NULL, &RecvMessageManager::test, args);
args is basically a structure consisting an instance of another ...
0
votes
0answers
30 views
Image Window is not being displayed c++
I am implementing a c++ code to detect edges of an image (edge-detection) using threads.
The sample image i am using is displayed at the runtime but not the result image...
The same version of code ...
2
votes
2answers
46 views
What is a good resource for learning to use pthreads with GTK?
So, just as introduction, I'm something of, as the kids say, a noob. I took CS 1 and 2 in college and (if I remember right) we got as far as recursion, linked lists, binary trees, etc. Nothing about ...
0
votes
0answers
67 views
Launch a pthread with a lambda
For reasons outside of my control, I have to use pthreads with a decreased stack size. However, I do still have access to C++11, so I wanted to write something similar to std::async that would let me ...
2
votes
4answers
50 views
Freeing memory across threads
Is it a bad practice to free memory across threads? Such that a thread allocates memory and, after exiting, passes the pointer to the main thread to free the memory. I feel like the answer is yes but ...
0
votes
2answers
66 views
posix threading in C condition variables
I've done my share of reading of condition variables, and I am simply stuck not being able to comprehend on how to use them.
I have a tree, who as of now, when you make an insertion for a node which ...
0
votes
1answer
53 views
Condition variable misconception
Suppose I have a tree and suppose I have a condition variable in each node of the tree.
Let's suppose 5 nodes were trying to insert into my tree(which already has 10 nodes)and for a reason, the 5 ...
3
votes
2answers
166 views
How can I calculate the running time of a pthread matrix multiplication program?
I have created a matrix multiplication program, one in serial, and one using pthreads. I need to compare their running times. My serial code takes about 16 seconds to calculate 1000x1000 matrix ...
1
vote
1answer
50 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 ...
2
votes
3answers
50 views
Not being able to initialize condition variable in a struct
Why am I not able to initialize a condition variable in a struct?
I want each node to have a condition variable so I can wait and signal it, and when I add the initialization code it throws this ...
0
votes
1answer
88 views
Pthreads matrix multiplication error
I want to use pthreads on my existing serial matrix multiplication code. My goal is to achieve better execution time using pthreads, simply to achieve speed-up. But at that point I'm stuck. My ...
2
votes
1answer
76 views
Crash around pthreads while integrating SQLite into RTP application on VxWorks
I am trying to integrate SQLite library into RTP application on VxWorks. I built SQlite and link against it statically. I run simple test that works well on other systems. The test is realy primitive ...
1
vote
1answer
124 views
OpenBSD serial I/O: -lpthead makes read() block forever, even with termios VTIME set?
I have an FTDI USB serial device which I use via the termios serial API. I set up the port so that it will time-out on read() calls in half a second (by using the VTIME parameter), and this works on ...
-2
votes
1answer
35 views
Segfault occurs on initialization in pthread only
I cannot understand why the following pseudo code is causing a segfault.
Using pthreads to run a function I run into a SEGFAULT initializing an integer to zero.
When my_threaded_function not in ...
0
votes
1answer
61 views
thread free pointer
I'm trying to work with threads in C and i'm having some problems with freeing a pointer
if this is the thread function
void *executor_func(void *param) {
char *lineEx = (char *) malloc (1024);
...
1
vote
1answer
55 views
Error: operation not permited
I tried to test the first example of following page in C language, to recognize how exactly mutex works within the pthread creation. But unfortunately I got the problem that "operation not permitted". ...
1
vote
1answer
55 views
What is the difference between Thread Object and Worker Object (php pthreads)
The only explanation that I've found so far is here: http://pthreads.org
But what does that mean in terms of code? When should I use Worker(s) and where should I use Threads?
Thanks!
8
votes
1answer
135 views
What is the correct way to build a thread-safe, multiplatform C library?
Consider the following trivial C program,
#include <errno.h>
int
main(int argc, char* argv[]) {
return errno;
}
When compiled on Solaris, the behavior of this code is dependent on the ...
2
votes
0answers
32 views
Trying to keep N CPUs running threads
I want to run (say) 25 CPU intensive tasks in my 6 cores computer by using each time 5 cores (so 1 be left for other tasks). Each of the 25 CPU intensive tasks can finish at different times, for ...
0
votes
1answer
52 views
pthread_cond_wait isn't doing what I'm expecting
I am trying to use pthread_cond_wait in the way I think it should be used. I use it in a method, that is waiting for something to change, and when it does it will call another method to get the data. ...
-2
votes
1answer
90 views
Segmentation Fault in multithread program C [closed]
I have made the following program as part of my academic project. I have given the entire program since I cannot identify the actual problem.
#include<stdio.h>
#include<math.h>
...
2
votes
1answer
65 views
Why fprintf doesn't work in thread?
I'm creating a thread with pthread_create.
Inside the thread function i use
fprintf(stdout, "text\n");
But this doesn't output anything to the console. The same problem is with printf.
I've also ...
2
votes
0answers
27 views
Invoking gcc -pthread under ExtUtils::MakeMaker
What's the right way to specify compilation and linking with -pthread (not -lpthread) in a Makefile.PL?
It's my understanding that gcc ought to be invoked with -pthread when building against ...
1
vote
1answer
73 views
Why destroy pthread_cond_t and pthread_mutex_t?
If in a threaded code, I create a pthread_cond_t c; condition variable or a mutex pthread_mutex_t m; in C, it is advised to destroy them after all the work is done.
Why is it so?
Also why is it ...
1
vote
2answers
110 views
Thread execution time in C/Linux
Wandering if I can measure actual time or cpu ticks taken by a particular thread.
pthreadcreate(.........);
//
//
pthreadjoin(.......);
I am running with 3 threads.
One master thread is calling ...
-2
votes
1answer
162 views
Is PThreads library still used in C++? [closed]
I was wondering is this code from year 2003 still state-of-the-art? It is
the consumer and producer example in C++ using PThreads.
...
-1
votes
3answers
117 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 ...
6
votes
1answer
149 views
What costs the extra execution time of the routine in a pthread program?
I wrote four different programs to count total words in two files. These four versions look mostly the same. First three versions use two threads to count and just the orders of three statements are ...
2
votes
2answers
156 views
Makefile for pthreads
I am trying to compile a pthread example, but am getting the following error:
make: *** No rule to make target `example.cpp', needed by `example.o'. Stop.
This is my makefile:
CC = g++
CCFLAGS = ...
0
votes
1answer
217 views
C pthread_join segmentation fault
I am trying to write a C program that calculates the size of a directory tree using threads for my assignment.
My code works fine when there is only one subdirectory, however whenever I have 2 or ...
1
vote
3answers
67 views
Passing 2 structures as parameters to pthread in C
Can I pass two structures as parameters to a pthread in a C program. I need to do something like this:
void *funtion1(void *pass_arg, void *pass_arg1)
{
struct thread_arg *con = pass_arg;
...
3
votes
3answers
103 views
non blocking socket in c++
I am writing client in c++ which client get response on two different ports.
I am listening to one port in main thread while I have created other thread(poxis based) like this
void ...
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 ...



