Subject: Re: Threading problems
To: None <darcy@NetBSD.org>
From: Nathan J. Williams <nathanw@wasabisystems.com>
List: tech-kern
Date: 11/23/2004 13:11:38
"D'Arcy J.M. Cain" <darcy@NetBSD.org> writes:

> Not being a kernel hacker myself I am not sure exactly what is happening
> here but it seems like the app thinks that it is not threaded but the
> __isthreaded variable says that it is.  I checked and the value is 1 at
> the sime it crashes.

This usually happens when a program that isn't linked against
libpthread dlopen()s a shared object which has a dependancy on
libpthread.

(Not a kernel issue at all, really)

        - Nathan