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.
1
vote
1answer
22 views
OpenMPI communication issue
I am trying to work around this issue since few days now. I have a hybrid OpenMPI + Pthreads program. This means, the program runs on multiple machines such that each machine runs a set of pthreads.
...
0
votes
1answer
43 views
get some trouble with using shared memory
I am trying to compile a code using pointer in a shared memory. I'd like to use mutex variable to examine whether interprocess synchronization is possible. But Xcode gives me the error "Parse Issue ...
0
votes
1answer
26 views
C - Threads using execl suicides itself
here's my problem: my code should execute all the executable files (i.e. all the binaries and all the scripts) in the current directory, concurrently.
Here's the code:
#include <stdio.h>
...
0
votes
1answer
18 views
GpuMat::upload stalls when called in thread?
Below is a simple program where it seems that my thread stalls when I try to upload an image to the GPU, where upload() does not return. The device info calls all work fine, and return appropriate ...
2
votes
2answers
80 views
Usage of void pointer function
I have been looking at the following working code for executing code as a pthread in c++:
void * PrintHello(void * blank) {
cout << "Hello World" << endl
}
...
...
2
votes
1answer
52 views
How to return void * from thread routine when calling pthread_exit
https://computing.llnl.gov/tutorials/pthreads/samples/join.c
Please see the code in the link above.
Question:
The thread routine (BusyWork) is supposed to return a void * but instead it ends with ...
0
votes
0answers
27 views
Periodic execution of a pthread with limited cpu time
I am on Linux, doing C++ with pthreads, everything is on SCHED_RR. Everything seems to work fine so far. Now I have a thread that does a never ending calculation, lets say it continuously updates a ...
0
votes
1answer
34 views
Pthread ~ Function that returns a character in pthread.
Would you please give me an example function that return character from pThread.
Say for example:
I have the following function.
void *consumer (void* data)
{
for (int ii=0; ii<100; ii++)
{
...
0
votes
2answers
41 views
Seg fault after pthread_create (
I cannot for the life of me figure out why this is seg faulting.
It is seg faulting in
get_ranks_parallel
on the line
for (struct node* node = data->plist->head; node!=NULL; ...
-5
votes
1answer
48 views
thread pool in c/c++ [closed]
A thread-pool is a collection of a fixed number of threads which are created on application startup. what data structure should be used to implement thread pool. How to assign particular thread from ...
1
vote
2answers
35 views
calling mysql_thread_end function before exiting the thread in c++ pthread
I am using two mysql objects in my application. I have to call mysql_thread_end only once before exiting the thread. Is there any function/callback so that it will call before exiting the thread?
...
0
votes
1answer
20 views
argument passed to function in pthread_create
I'm experimenting with pthreads and for the following code:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void* print_thread_num(void *index);
int main(int argc, ...
0
votes
1answer
26 views
What does int type convert to void* mean in pthread_create()?
What does such code mean:
int main() {
typedef int UDTSOCKET;
UDTSOCKET recver;
pthread_create(&rsvthread, NULL, recvAndSend, (void *)(unsigned long)recver);
return 0;
}
void* ...
1
vote
5answers
79 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 ...
0
votes
1answer
44 views
slots and signals for multithreading
I have a job in pthread which prepares a data set for plotting. Then I need to display this data in a main window like a graph. How can I transfer the data set form the thread to the rendering widget ...
0
votes
1answer
25 views
PHP: write_socket() giving unexpected warning
I'm trying to set up a WebSocket application, but I'm stuck at the following.
After accepting the socket I received the client's headers as expected, but when I try to send the upgrade back ...
1
vote
1answer
13 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
2answers
45 views
Pthreads and dynamic memory
My thread routine looks like this
void * dowork(void * args)
{
char* ptr = new char[25];
memset(ptr, 0, sizeof(ptr));
// Do some operations with ptr
// What if I call delete[] ptr
}
...
0
votes
2answers
29 views
Calling MPI functions from multiple threads
I want to implement the following thing using MPI and Pthreads but facing some error:
Each processor will have 2 threads. Each processor's one thread will be sending data to other processors and the ...
0
votes
2answers
72 views
Background thread with pthreads
i'm using pthreads to create a background thread to load and do some tasks in background, but it lags the application a little bit as it's work is intense sometimes.
Is there any way i can set a ...
-1
votes
0answers
24 views
Running a member function in a new POSIX thread + Templates [duplicate]
I have a template class ABT_Solver defined like this:
template<typename V, typename T>
class ABT_Solver {
\\...
private:
void* messageReaderWorkhorse(void*);
void start();
pthread_t ...
0
votes
0answers
35 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
1answer
38 views
How to synchronize threads (consumer/producer)
I have the following code:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <queue>
using namespace std;
queue<int> myqueue;
pthread_mutex_t ...
0
votes
0answers
64 views
PHP Extension: call_user_function from a pthread returns error
I am currently working on a PHP extension. This PHP extension should also make use of multithreading via pthreads. Inside the thread a function in PHP userspace should be called via ...
-2
votes
1answer
50 views
How is exit status passed between pthread_exit and pthread_join? Is a correction needed in man page?
Question:
How exactly is exit status passed between pthread_exit and pthread_join?
From pthread_join man page
int pthread_join(pthread_t thread, void **retval);
If retval is not NULL, then ...
0
votes
2answers
23 views
What does pthread_exit do so that main should call it to prevent other threads from dying prematurely
http://man7.org/linux/man-pages/man3/pthread_exit.3.html
The man page above does not tell why main() should terminate by calling pthread_exit, it only says that it should. Any comments will be ...
0
votes
1answer
22 views
how to stop a process when another is running java android
i am doing an app in android that connecting with servers and downloading some chunks.
now i want to have another one process doing other job. here is my code
class RemindTask extends TimerTask {
...
3
votes
2answers
44 views
Why can a read-lock be acquired when a write-lock is pending?
According to the POSIX documentation for pthread_rwlock_rdlock "The calling thread acquires the read lock if a writer does not hold the lock and there are no writers blocked on the lock." I seem to ...
0
votes
2answers
24 views
Multi user aplication through multi terminals
Night people,
I have what I believe to be a simple problem, but can't figure out how to solve it:
I want to create a multi-thread multi-user application which will be launched in the same computer ...
0
votes
2answers
33 views
pthread_create not enough space
I'm using Pthreads with MinGW on Windows. A call to pthread_create returns a error which translates to "Not enough space". What kind of space does it refer to? Is the thread stack space?
int ...
1
vote
2answers
53 views
Seg fault (core dumped) after pthread_join in C
I keep getting a seg fault (core dump) after pthread_join in my program. It prints out the expected result just fine, but seg faults when joining the thread. I have looked at several other ...
0
votes
2answers
33 views
`pthread_mutex_t`, `sem_t` in a `std::map`
Basically I'm maintaining a set of states for a bunch of objects:
#define SUBSCRIPTION_TYPE int
std::map< SUBSCRIPTION_TYPE , bool > is_object_valid;
And I need to protect each element in ...
0
votes
1answer
42 views
Pthread_create error 11 with only 5 simultaneous thread
I have a problem in a multi threaded program. My program has 4 threads that are always here.
We will name these thread from 1 to 4.
The goal for my program is to communicate on a socket with a ...
0
votes
1answer
52 views
Trouble with threads in a function to exec another function after X time
I am trying to create this function in order to exec another function after X time:
void execAfter(double time, void *(*func)(void *), t_params *params);
I have made an Thread ...
0
votes
3answers
73 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>
...
2
votes
2answers
94 views
Stopping pthread as soon as struct is freed in C
I have a worker thread processing a queue of work items. I just implemented a second worker that process the items which were inserted in worker1. However, I came across some Invalid reads while using ...
-4
votes
1answer
45 views
Linux Terminal Input/Output C program
I am having some doubts about Linux Terminal output's
in a c program i made a
printf("Write A Message");
fgets(buffer,BUFSIZ,stdin);
which waits for a Message to be typed from keyboard
I have ...
0
votes
2answers
58 views
Output for simple program using pthread
void cleanupHandler(void *arg) {
printf("In the cleanup handler\n");
}
void *Thread(void *string) {
int i;
int o_state;
int o_type;
pthread_cleanup_push(cleanupHandler, NULL);
...
0
votes
1answer
49 views
How to optimize thread effciency(CPU cost) when fix the thread loop time
I use lib phtread 2.8 and the OS kernal is Linux 2.6.37 on arm. I write multi-thread program:
Thread A :using phtread interface to create and set priority to the half of sched_get_priority_min(policy) ...
1
vote
1answer
44 views
pthread synchronization on two consumers one producer
I have a worker thread processing a queue of work items.
//producer
void push_into_queue(char *item) {
pthread_mutex_lock (&queueMutex);
if(workQueue.full) { // full }
else{
...
0
votes
1answer
37 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 ...
0
votes
1answer
20 views
Output for sample code for an upcoming exam concerning pthread
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
int token = 2;
int value = 3;
void * red ( void *arg ) {
int myid = * ((int *) arg);
...
3
votes
1answer
94 views
Using pthreads and malloc
I asked a question Using sockets in multithread server yesterday. In this question I described segmentation fault under Solaris in multithreaded server. Now I have found the core of error and written ...
1
vote
3answers
43 views
Mutex when returning object value
If I understand how C++ compilers handle local variables then IsShutdownInProgress() does not need any locking since the shutdownInProgress static variable will be placed on the stack. Am I correct?
...
0
votes
3answers
64 views
Using sockets in multithread server
guys!
I'm developing multithread server on c under *nix. In the main thread of the process I have listening socket which waits for connections (accept). When it gets a connection (accept returns ...
2
votes
1answer
41 views
Multithreaded directory work in C
I'm having difficulty creating a C program that will add up all the sizes in a directory then recursively go into any other directories to do the same thing.
Unfortunately, it goes on directory ...
-2
votes
1answer
32 views
Basic deadlock issue, one mutex in multiple functions
I'm writing a program in C and which has 3 functions in it, A, B and C. I have a static mutex as global which is locking access to these functions. The functions A, B and C and be called in any order ...
0
votes
1answer
59 views
C++ timer with only pthreads
Is there any way to write a timer in pure C/C++ with only using pthreads neither boost nor Qt.
I want OS to run only the function in the relevant thread(e.g MyThreadClass.myfunction()). I don't want ...
0
votes
0answers
30 views
Semaphore with 0 value doesn't block thread after wait call
I'm new to semaphore.h and I have a small question.
...
sem_t semaphore;
sem_init(&semaphore, 1, 0);
sem_wait(&semaphore);
...
That is a part of my code.
I init my semaphore with zero ...
-4
votes
0answers
46 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 ...

