Tagged Questions
1
vote
5answers
69 views
What is the best way to get tight timing of a thread in c (pthreads)
Ok so I have a thread that I need to run exactly every 10ms, but it takes a variable amount of processing time (for simplicity we can assume the processing time is less than 10ms). Small deviations in ...
1
vote
1answer
12 views
What signal number do pthread_cond_wait and pthread_cond_signal use internally?
Do pthread_cond_wait and pthread_cond_signal use sigwait and kill (from signal.h), respectively, internally?
If yes, what signal number do they use, I mean, what value is passed to int kill(pid_t ...
0
votes
0answers
30 views
Performance issues in Linux Multi-heap Multi-thread application
We are porting a multi-process application to multi-threaded architecture. We have the same application running on Windows and it is very performant.
For Linux we are using the pthread libraries. In ...
0
votes
3answers
70 views
Condition Variable POSIX Thread : C/C++
I am learning Multithreading. With regard to
http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html#SCHEDULING
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
...
0
votes
1answer
34 views
Using Pthreads in a Mulithreaded Server
i am programming a Mulithreaded Client/Server between processes program which uses message queue's.
The Server will handle the message's send by the clients, and later it should give the work to a ...
-4
votes
0answers
45 views
snake game with designed thread library c code on linux platform [closed]
i wrote this snake game without pthread library instead I added some extra code that functions like pthread but i got segmentation fault when i compile it I dont know why?can any one help me?
in this ...
0
votes
2answers
75 views
How to pass data from one thread to another running thread using pthread in C++
Is there a way to pass data from one running thread to another running thread. One of the threads shows a menu and the user selects one option using cin. The other thread is processing the data and ...
0
votes
1answer
32 views
taskset and unknown thread on linux
My company has just brought a software API that spawns off a monitoring thread (when enabled). This monitoring thread is very useful however we would like to lock it to core 0 in Linux. However, I ...
0
votes
1answer
63 views
What are the main purposes for joining pthreads in Linux/UNIX?
I'm a student and I'm going over threads right now, and despite reading TLPI very carefully, I still don't have a good understanding as to why one might join two pthreads.
From what I've gleaned, it ...
2
votes
0answers
71 views
Segmentation fault when calling backtrace() on Linux x86
I am attempting to do the following - write a wrapper for the pthreads library that will log some information whenever each of its APIs it called.
One piece of info I would like to record is the stack ...
1
vote
1answer
53 views
Why does semaphore not affected by post from different thread?
Semaphore is defined as static variable
static int semaphore = -1;
I am trying to post to this semaphore
sem_post(&semaphore);
There is a wait for semaphore in the thread created this way:
...
0
votes
1answer
60 views
Producer-Consumer Issue
Hi I'm trying to write an algorithm for solving the producer-consumer problem and I've hit a roadblock. This is the output I am getting from my code:
Producing: 6
6 0 0 0 0 0 0 0 0 0 END
and then ...
0
votes
1answer
55 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
112 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 ...
-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>
...
1
vote
2answers
109 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 ...
6
votes
1answer
148 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
155 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 = ...
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;
...
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)
...
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>
...
0
votes
0answers
23 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
4answers
116 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
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.
...
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
1answer
85 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 ...
1
vote
2answers
122 views
segmentation fault during execution of program
I have written a program to create 10 threads and run them normally. The Program is running fine but at the end it gives a segmentation fault. What is this fault, what is causing it, and how do I ...
0
votes
1answer
66 views
while compiling thread program on linux machine it gives “undefined reference ” error
Hi I have written a simple program in threads to create 10 threads and execute them normally but when I compile the code on linux machine it gives following errors..
*/tmp/cc4swqyK.o: In function ...
1
vote
3answers
139 views
how to set pthread max stacksize
The api pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
is to set the minimum stack size (in bytes) allocated for the created threads stack.
But how to set the maximum stack size?
...
0
votes
1answer
133 views
error: argument of type “void (opca_hello::)()” does not match “void* (*)(void*)”
I have written a very simple code for threading. Since I am very new to this, I have no idea about the error mentioned.
class opca_hello
{
public:
void hello();
}
void opca_hello::hello()
{
printf ...
0
votes
1answer
45 views
pthread_atfork() called more than once causing after fork() functions to be called more than once
I'm implementing a library. I can modify only the files mylib.c, mylib.h , and not the main() which inside another file.
When a process inside main() calls mylib_init() then can start using mylib.h, ...
2
votes
3answers
71 views
Multiple argument in pthread_create
According to pthread_create man page, the argument of the function is:
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void ...
1
vote
1answer
78 views
How can I decide how much stack I can use after a call to pthread_attr_setstacksize?
I am trying to debug some code regarding stack usage. I have made the following test program (just as an example to figure out how the pthread library works):
#include <string.h>
#include ...
2
votes
3answers
161 views
How do I create a global variable that is thread-specific in C using POSIX threads?
I am learning about POSIX threads and I have come to the section on Thread Specific Data. The book does an excellent example using a file descriptor. However, I wanted to do the same example on my ...
0
votes
1answer
64 views
SIGSEGV when using pthreads in Stop-and-Wait Protocol implementation
I'm a college student and as part of a Networks Assignment I need to do an implementation of the Stop-and-Wait Protocol. The problem statement requires using 2 threads. I am a novice to threading but ...
1
vote
1answer
180 views
Segmentation fault using glGetString() with pthreads under linux
I'm trying to load textures in a background thread to help speed up my application.
The stack we are using is C/C++ on Linux, compiling with gcc. We're using OpenGL, GLUT and GLEW. We have been using ...
3
votes
2answers
118 views
linux multithread scheduling
I have a program launching about 12 threads on 8-core server. some of the threads are waiting for critical data. where it's using a recv in loop, the recv will block until data comes. However when ...
0
votes
1answer
55 views
How to use multiple pthreads to evaluate expression from a program
I want to use pthread to solve an expression by breaking down it into threads.
My questions is:- If an expression like (a+b)+(c+d)+(e+f) to be evaluated using pthreads such that:-
Create 3 threads ...
1
vote
2answers
167 views
pthread_create not working properly with pthread_attr_setschedparam
I am a novice in thread programming. So my apologies for this seemingly stupid question.
I am trying to create a POSIX thread using pthread_create() using pthread_attr_t. I am trying to set the ...
1
vote
4answers
70 views
Thred safe data structure for holding client information
I am writing an application in which the server has to keep track of connections from multiple clients. Each client is assigned a connection id which it sends in every packet for identification. I ...
1
vote
0answers
55 views
Current state of affairs of Linux threading [closed]
The Readme to Lua Lanes,
https://github.com/LuaLanes/lanes/blob/master/README
gives a rather sad state about threading using NPTL, however this has been derived from information which was collected in ...
0
votes
1answer
96 views
Concurrency in Pthread
I have a c program running in Linux kernel 2.6.18-194, server has 1 cpu socket with 6 cores with hyper-threading , thread1 receive data and then thread2 and thread3 pass the data thread1 received to ...
0
votes
3answers
124 views
Mutex lock threads
Am new to multi threaded/processs programming.
So here's what I need to clarify.
Process A code
pthread_mutex_lock()
pthread_create(fooAPI(sharedResource)) //fooAPI creates another thread with ...
1
vote
1answer
57 views
Does the new thread exist, when pthread_create() returns?
My application creates several threads with pthread_create() and then tries to verify their presence with pthread_kill(threadId, 0). Every once in a while the pthread_kill fails with "No such ...
1
vote
3answers
133 views
Does the pthreads functions set the errno internally?
In the below code i am calling pthread_join() with thread id as self. Result is that it returns error number 35. So same i am trying to print with perror. But it is displaying "success". My doubt is ...
2
votes
1answer
72 views
When is it safe to call pthread_attr_destroy?
I am using pthreads on Linux. From the documentation, it is not clear to me when it is safe to call pthread_attr_destroy on the attributes I use to create a new thread? Can I do it immediately after ...
0
votes
1answer
84 views
linux multithread programming, atomic code region
I am writing an network application.
and have some problem regarding thread race condition.
"cd" is a socket descriptor.
one of my thread retrieves socket descriptor
and send some data through the ...
2
votes
1answer
175 views
Does “pthread_mutex_t mutex = {0}” initialize mutex?
Is it possible to initialize mutex in this way:
pthread_mutex_t mutex = {0};
What is the difference between the following 3 initialization of mutex:
1) pthread_mutex_init(&mutex, NULL);
2) ...


