0
votes
1answer
42 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
2answers
40 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 } ...
-2
votes
1answer
45 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
1answer
21 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 { ...
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
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
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> ...
2
votes
2answers
93 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 ...
0
votes
2answers
55 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); ...
1
vote
1answer
42 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{ ...
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
63 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 ...
0
votes
1answer
30 views

how to run a python file as Thread?

Example Python parent file: class myClass( wx.Frame ): def __init__(self): print "Prepare execute" self.MyThread = Thread.RunBackground( './child.py' , ( '--username' , 'root' ) ...
2
votes
1answer
55 views

pthread can I get the original argument?

Heres the snippet of code: pthread_create(&worker->thread, NULL, EagleWorker_begin, worker); void* EagleWorker_begin(void *obj) { EagleWorker *worker = (EagleWorker*) obj; } This works ...
-1
votes
1answer
79 views

Implementing basic semaphore to simple multi-threads program

Please help the Synchronization I have to make this program to performe sequentially manner using in threads( ex) thread1 performe and thread2 perforem and so on) But it should be ...
0
votes
1answer
71 views

why using pthread_exit?

I'm trying to figure out the usage of pthread_exit using this example code: void* PrintVar(void* arg) { int * a = (int *) arg; // we can access memory of a!!! printf( "%d\n", *a); } int ...
0
votes
3answers
110 views

How to switch between posix threads?

Here is what I am trying to do: Start 10 posix threads from the main thread. Each of the 10 threads will do some operation say 100 times. This is what I need help with. I want to allow thread_1 ...
-2
votes
3answers
77 views

How do I run a Python method as a subprocess?

i need a help with a python project: Example: class MyFrame(wx.Frame): def __init__(self, parent, title): super(MyFrame, self).__init__(parent, title=title, size=(330, 300)) ...
1
vote
1answer
63 views

Core dump in multithreaded program: basic_string::_S_construct null not valid [closed]

I want that 4 threads will come into the same function named read and do what there is in the function (to read, after it to print on the monitor, and to show it all...). The problem: terminate ...
0
votes
1answer
37 views

One thread controlling many others

I have an application that waits for clients to connect. Each time a client connects, a new frame gets created (with the new socket file descriptor). I know how many clients will connect, after I ...
1
vote
2answers
90 views

PTHREAD_CANCEL_ASYNCHRONOUS Cancels the whole process

In a C program, I am using PTHREAD_CANCEL_ASYNCHRONOUS to cancel the thread immediately, as soon as the pthread_cancel is fired from the parent thread. But it is causing the whole process to get crash ...
1
vote
0answers
19 views

Simulating database access rules with pthreads, locks

For a hypothetical database, there are three operations: Search, Append, Modify Search: can run concurrently with any number of other search operations Append: database can only run ONE append ...
1
vote
1answer
69 views

Memory Leak handling while terminating thread in C

I am writing here a C pgm, which creates a thread and process it. To avoid the memory leak by the thread I am using the pthread_cleanup_push and pthread_cleanup_pop function, and calling pthread_exit ...
-3
votes
5answers
130 views

Parallel sum of elements in a large Array

I have program that sums the elements in a very large array. I want to parallelize this sum. #define N = some_very_large_no; // say 1e6 float x[N]; // read from a file float sum=0.0; main() { for ...
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 ...
0
votes
3answers
59 views

Multiple threads can wait on a semaphore at same time

Can multiple threads wait on a single semaphore ? If yes, upon semaphore down which one will be resumed ?
0
votes
1answer
40 views

Stat errors in pthread (S_ISDIR not working)

I am currently attempting to write a program that finds the size of a directory tree as well as the size of all subdirectories within it by creating a thread for each new subdirectory and using that ...
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
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
63 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; ...
4
votes
1answer
106 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 ...
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 ...
1
vote
1answer
48 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
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 ...
1
vote
1answer
54 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!
-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 ...
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
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 ...
-2
votes
1answer
161 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. ...
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 ...
7
votes
3answers
157 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 ...
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
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 ...
2
votes
3answers
81 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
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
0answers
49 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
186 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 2 3 4 5 16