summaryrefslogtreecommitdiffstats
path: root/lib/libstand/zalloc_defs.h
Commit message (Collapse)AuthorAgeFilesLines
* Reimplement malloc/free debugging that includes the offending file:linepeter2002-07-201-0/+1
| | | | | | | | | | | | info. This turned out to be rather useful on ia64 for tracking down malloc/free problems. Detect duplicate free()'s - otherwise these show up as a guard1 failure and it looks like corruption instead of something simple like a second free() where there shouldn't be. Deal with libz using libc headers and not seeing the malloc/free stuff that we provide in libstand. Do similar nastiness to what is done for bzlib. Tested on: i386, ia64 (compile, run)
* Define the types iaddr_t and saddr_t for sparc64.robert2001-10-151-0/+4
|
* A quick and dirty port of libstand to ia64.dfr2001-03-061-0/+4
|
* Disable the end guard for now.benno2000-11-101-0/+2
| | | | | | | | The test for failing the end guard was always triggering (and was reported as such in compiler warnings). This is a temporary band-aid until I can work out what's really going on. Reviewed by: obrien
* Inital PowerPC loader build support.obrien2000-10-101-0/+4
| | | | Submitted by: Benno Rice <benno@jeamland.net>
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* To clarify last commit, msmith says:obrien1998-10-171-1/+1
| | | | | The reason the Alpha has less room than the i386 is because the bootstrap is given a 256K mapping by the firmware; to add more requires extra work.
* Reduce the sbrk() increment from 64K to 4K. There's not much room on themsmith1998-10-161-2/+2
| | | | Alpha, and wasting potentially 64K-4 bytes of RAM just isn't an option.
* Prune unused zalloc components as recommended by Matt Dillon. Extra debuggingmsmith1998-10-011-3/+1
| | | | code is still enabled (it's not very expensive).
* * Enable old UFS compatibility code for booting from Digital Unix formatteddfr1998-09-261-1/+7
| | | | | | | disks. * Fix a whole raft of warnings, printf and otherwise. * Make zalloc work for alpha (just a case of using the right typedef). * Add some (disabled) malloc debug printing to stand.h.
* Replace the old and extremely icky Mach/NetBSD allocator with a similarlymsmith1998-09-261-0/+83
compact and much better one donated by Matt Dillon. Implement a simple sbrk() which uses the existing setheap() api. Remove the custom allocator from the UFS code. It wasn't working quite right, and it shouldn't be needed with the new allocator. Fix a serious problem with changing the value of already-existent environment variables. Don't attempt to modify the supposedly-const argument to putenv() Fix an off-by-one sizing error in the zipfs code detected by the new allocator. Submitted by: zmalloc from Matt Dillon <dillon@backplane.com>
OpenPOWER on IntegriCloud