Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
539 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 ...
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 ...
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 ...
1
vote
1answer
255 views

What's the difference between GNU_LIBC_VERSION and GNU_NPTL_VERSION?

Notice these two RedHat Linux system configuration settings: $ getconf GNU_LIBC_VERSION glibc 2.3.4 $ getconf GNU_LIBPTHREAD_VERSION NPTL 2.3.4 I see they correspond to some of the TLS libraries: ...
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
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 ...
0
votes
1answer
75 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 ...
0
votes
3answers
280 views

Are there specific defines of linuxthreads and nptl

I hav a programme, which must work differently for linuxthreads and nptl. Are there defines in this libs, that can be used in my programme to detect, is nptl is used or is linuxthreads is? UPDATE1: ...