Tagged Questions
3
votes
3answers
556 views
NPTL caps maximum threads at 65528?
The following code is supposed to make 100,000 threads:
/* compile with: gcc -lpthread -o thread-limit thread-limit.c */
/* originally from: http://www.volano.com/linuxnotes.html */
#include ...
2
votes
1answer
540 views
Linking against NPTL for pthread function pthread_condattr_setclock
I've written some pthread code that use timed waits on a condition variable but in order to ensure a relative wait I've set the condvar's clock type to CLOCK_MONOTONIC using ...
1
vote
2answers
82 views
Do I need to do anything special to use NPTL (as opposed to pthreads)?
Do I need to do anything special to use NPTL instead of pthreads? I am on kernel 2.3.23...
I am asking because I am looking at some code which is presumably working with NPTL but I can see that it ...
1
vote
2answers
237 views
Determine whether a thread is blocked
Does anyone know of a way to determine whether a thread is currently blocking? Basically, I want to check whether a certain thread is blocking (in this case on a AF_UNIX datagram socket receive call) ...
1
vote
2answers
668 views
NPTL Default Stack Size Problem
I am developing a multithread modular application using C programming language and NPTL 2.6. For each plugin, a POSIX thread is created. The problem is each thread has its own stack area, since ...
0
votes
3answers
49 views
NTPL and pthread confusing
What is the basic difference between NPTL and POSIX threads? How have these two evolved?
0
votes
1answer
76 views
Compile and use glibc-2.13 from source for ubuntu x86_64 architecture
I am trying to build a modified version of libc/NPTL. My ubuntu version shows that it is version 2.13. I want to create a separate libc/nptl/libpthreads and want to use it for an existing application ...