On Mon, Aug 29, 2005 at 03:13:38PM -0700, prasad jlv wrote: > Yes, I am running this on Solaris 10 FCS. > -------------------------------------------------------- > > umem_flags/X > libumem.so.1`umem_flags: > libumem.so.1`umem_flags: 0
It looks like the environment variables were set up after umem was initialized; is you application doing: putenv("UMEM_DEBUG=default"); or something? That isn't going to work, since the putenv() call will do an allocation, which will initialize umem. You need to set the environment variables up before the process is invoked. Cheers, - jonathan -- Jonathan Adams, Solaris Kernel Development