Tagged Questions

1
vote
1answer
37 views

How do you run several pthreads, in C, and detect the first to terminate?

How do you run several pthreads, in C, and detect the first to terminate? I'm thinking there has got to be an interface similar to select() for sockets to do this with threads. T …
2
votes
7answers
141 views

How to print pthread_t

Searched, but don't come across a satisfying answer. I know there's no a portable way to print a pthread_t. How do you do it in your app? UDP: Actually I don't need pthread_ …
7
votes
3answers
248 views

What is the difference between Go’s multithreading and pthread or Java Threads?

What is the difference between Go's multithreading approach and other approaches, such as pthread, boost::thread or Java Threads?
0
votes
1answer
12 views

In which include file EPERM (returned by pthread_mutex_unlock) error code is declared?

Can anyone give me the right direction for this, as I am not able to find the declaration of EPERM in either pthread.h or errno.h (on openSUSE Linux). I found this in asm-generic/e …
1
vote
4answers
37 views

Pthreads question

How to check if a thread is terminated? In my case, I have my_pthread[5] and I want to check if any in 5 threads has finished its job (terminated???I'm not sure) then I can give th …
3
votes
4answers
92 views

Wait for a detached thread to finish in C++

How can I wait for a detached thread to finish in C++? I don't care about an exit status, I just want to know whether or not the thread has finished. I'm trying to provide a sync …
6
votes
11answers
359 views

How do I start to use multithread programming?

I am a beginner on Stack Overflow. I am working on a Unix platform in C/C++. Knowing basic programming in these regards how could I start with multithreading? Multithreading seems …
1
vote
5answers
94 views

example of thread specific data in C

Does anybody know of (or can post) an example of the use of thread-specific data? I'm looking for something that's clearly explained and easy to understand. I've got a global char …
1
vote
5answers
54 views

passing a pointer to a structure as an argument to a thread cancellation cleanup handler

I'm having trouble passing a pointer to a structure as an argument to a thread cancellation cleanup handler. Here's some sample code that blows up when it hits the compiler. Any id …
0
votes
1answer
17 views

Does pthreads support a method for querying the “lock count” of a recursive mutex?

Does pthreads support any method that allows you to query the number of times a recursive mutex has been locked?
0
votes
2answers
70 views

core dump in a multithread program

Hi, i was trying to write a simple multithreaded program. It is dumping the core. I have my function that is called when a thread is created below: void *BusyWork(void *t) { in …
3
votes
3answers
100 views

c library function to get number of active threads

Hi everybody, I'm developing a multi threaded Unix application in C. Is there a simple way to get the count of the number of simultaneously active threads? I don't want to have to …
0
votes
2answers
87 views

query about a multithreading program

this might a simple query. when we are creating a thread we are passing the (void *)t as an argument to a function PrintHello.we are copying the value in the pointer threadid(typ …
0
votes
4answers
77 views

thread termination issue (c programming)

I'm working on an application for Linux in C which uses multiple threads. The threads which are spawned by the main function do most of the work, and therefore usually finish last. …
0
votes
3answers
90 views

uniprocessor or multiprocessor

On unix, how could we know whether the system is multiprocessor or uniprocessor?

1 2 3 4 5 12 next
15 30 50 per page