Tagged Questions
11
votes
4answers
1k views
Java I/O vs. Java new I/O (NIO) with Linux NPTL
My webservers use the usual Java I/O with thread per connection mechanism. Nowadays, they are getting on their knees with increased user (long polling connection). However, the connections are mostly ...
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
3answers
775 views
Setting the thread /proc/PID/cmdline?
On Linux/NPTL, threads are created as some kind of process.
I can see some of my process have a weird cmdline:
cat /proc/5590/cmdline
hald-addon-storage: polling /dev/scd0 (every 2 sec)
Do you ...
0
votes
1answer
27 views
NPTL: what is MULTIPLE_THREADS_OFFSET and how it is set
There was rather huge commit-git into nptl/glibc:
http://sourceware.org/git/?p=glibc.git;a=commit;h=e51deae7f6ba2e490d5faeb8fbf4eeb32ae8f1ee
by Ulrich Drepper and Jakub Jelinek @ 2007
I interested ...