From: "Andrew Gallatin" <[EMAIL PROTECTED]>
> Actually, it is a tcsh bug. Try playing with the MALLOC_OPTIONS
> env. variable in -stable. Specifically, set it to 'AJ' & I bet it will
> drop core in -stable. Eg:
> [EXAMPLE DELETED]
> Note that -current has malloc options 'AJ' on by default to catch just
> this kind of bug.
Ah. That wasn't clear from 'man malloc' under CURRENT. Setting
MALLOC_OPTIONS = "J" (on -STABLE) causes the dump. Now
according to the man page for malloc:
J Each byte of new memory allocated by malloc(), realloc() or
reallocf() as well as all memory returned by free(), realloc()
or
reallocf() will be initialized to 0xd0. This options also sets
the ``R'' option. This is intended for debugging and will
impact
performance negatively.
This option is used to catch places where the code makes assumptions
about the contents of malloc memory? (e.g. that it is zeroed)?
I will submit a problem report to Christos but I want to make sure
that I can explain exactly what is happening and why...
-Steve
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message