Subj : Re: Which pthread library I am using ? To : comp.programming.threads From : Paul Pluzhnikov Date : Wed Mar 30 2005 07:20 am Izo writes: > Some time ago somebody on this newsgroup asked the same question and > got the answer with the command line sequence which caused system to > display the pthread library tag. Can somebody, please, help me with > this command sequence ? What is a "library tag" ? You are apparently on Linux. Do 'ldd /path/to/exe'. If you see /lib/tls/libpthread.so.0, you are using NPTL threads. If you see /lib/libpthread.so.0 or /lib/i686/libpthread.so.0, you are using LinuxThreads. If this doesn't answer your question, you need to ask a more precise one. Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. .