Tagged Questions

0
votes
0answers
39 views

Mac OS X port crashes in pthread_setspecific in glibstdc++ vsnprintf - how to troubleshoot?

I'm testing a Mac OS X port of my multithreaded server. It starts up, but it dies in vsnprintf soon after the first client request is taken by a worker thread. It seems that vsnp …
3
votes
1answer
46 views

How do I determine if a pthread is alive?

How do I determine if a detached pthread is still alive ? I have a communication channel with the thread (a uni-directional queue pointing outwards from the thread) but what happe …
2
votes
4answers
51 views

Does exiting from a pthread release malloced memory ?

Let's say I pthread_create and then pthread_detach it. Now, from within the thread function, I malloc some block. When the thread exits, will the malloc'ed memory be freed automa …
2
votes
3answers
63 views

pthreads, setjmp, longjmp. How can you tell when a function is finished running?

I am writing a user space thread library. I have a struct that manages each thread. My threads are very simple, they take a function ptr and its arguments, and just run that functi …
0
votes
2answers
48 views

Making a user space thread library with pthread, how do you properly create the first thread? (well first 2 threads)

So im making a user space thread library. lets say theres some program that uses it. in that program it starts at the main method. before any calls to create_thread, there are no …
3
votes
2answers
135 views

Bind threads to processors

Hi, When I run my multi-threaded code, the system (linux) sometimes moves the threads from one processor to another. As I have as many threads as I have processors, it invalidates …