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
4answers
602 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
781 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 ...
1
vote
2answers
86 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
695 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
66 views

NTPL and pthread confusing

What is the basic difference between NPTL and POSIX threads? How have these two evolved?