Tagged Questions
2
votes
1answer
541 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
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:
...