Hi Andrew, > Under Linux, is there some more general way to answer the question, > "Exactly what shared libraries is this running process actually > using?" Some command line tool, or a particular thing to check under > gdb? Or some C function which I could call from inside AOLserver > itself?
maybe: on the binary: ldd /the/path/nsopenssl.so during runtime: lsof /the/path/nsopenssl.so lsof | grep nsd lsof -p <pid of one nsd thread> and the huge answer: strace ./nsd -u ... -g ... -f -t ... -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
