Subj : Re: How to find an application is built with LinuxThreads/NPTL ? To : comp.programming.threads From : Paul Pluzhnikov Date : Thu May 19 2005 08:18 am karthikd22@hotmail.com writes: > and an error message : > Program received signal SIGABRT, Aborted. > 0xb70c2cef in raise () from /lib/tls/libc.so.6 That's not an error; that's gdb telling you where your app crashed. You'll do well to issue gdb 'where' command at that point. > After a bit of googling, I found that setting environment variable > LD_ASSUME_KERNEL to 2.4.1 solved this problem and I could debug the > program correctly. What was incorrect about debugging your app *before* you set this variable? > My question is, is there a way to find out whether an application is > built with LinuxThreads or NPTL? There is no such thing as "app that is built with LinuxThreads". A properly written application should (in theory) run correctly with either version of libpthread.so.0 Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. .