summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_malloc_debug.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* remove MALLOC_DEBUGdlg2017-11-141-364/+0
* make malloc(9) mpsafe by using a mutex instead of splvm.dlg2017-07-101-28/+45
* Replace a plethora of historical protection options with justderaadt2014-11-161-3/+3
* Reduce uvm include madness. Use <uvm/uvm_extern.h> instead ofmpi2014-03-281-2/+2
* Uncomment kprintf format attributes for sys/kernsyl2013-08-081-2/+2
* allow kernel to compile with MALLOC_DEBUG.syl2013-06-251-2/+3
* Comment out recently added __attribute__((__format__(__kprintf__))) annotationsmiod2013-02-171-2/+2
* Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions andmiod2013-02-091-2/+3
* Kill integer from pointer warning when compiling with MALLOC_DEBUG.mcbride2011-07-281-2/+2
* Change format strings to allow 64 bit addresses to display properly,jsg2009-04-241-6/+7
* While splitting flags and pqflags might have been a good idea in theoryart2007-04-131-2/+2
* Instead of managing pages for intrsafe maps in special objects (aka.art2007-04-111-5/+3
* Mechanically rename the "flags" and "version" fields in struct vm_pageart2007-04-041-2/+2
* Fix inversed logic in handling the "nowait/waitok" flags. Bugs in two placesart2004-06-201-3/+21
* license cleaning.art2003-06-031-5/+2
* Add a special malloc type M_DEBUG.art2002-12-201-4/+5
* Hmm.. I don't think we want the default to be to debug every allocation.art2002-12-051-3/+3
* Do not use debug_malloc if it hasn't been initialized.art2002-12-051-4/+9
* Don't abuse VM_PROT_ALL. Use VM_PROT_READ|VM_PROT_WRITE here.art2002-07-011-2/+2
* splassert where neededart2002-06-111-1/+3
* Pool deals fairly well with physical memory shortage, but it doesn't dealart2002-01-231-2/+2
* Sprinkle pmap_update calls where relevant and some otherart2001-12-081-1/+3
* Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.miod2001-11-061-2/+1
* merge vm/vm_kern.h into uvm/uvm_extern.h; art@ okmickey2001-09-191-2/+1
* typo in the comment.mpech2001-08-301-2/+2
* When this code was imported to NetBSD by Jason Thorpe he did a bunch ofart2001-08-171-108/+88
* Be more careful with ranges.art2001-07-261-3/+10
* Typo.art2001-07-181-2/+2
* Get rid of the PMAP_NEW option by making it mandatory for all archs.art2001-07-181-10/+1
* Since normal malloc reports "data modified on free list" withart2001-07-171-1/+4
* remove old vmart2001-06-271-5/+1
* Allow passing an address to 'show malloc' and print out some information aboutart2000-06-071-6/+32
* Change debug_malloc_print so that it can be called from ddb.art2000-06-071-10/+18
* Default type and size to -1.art2000-06-071-3/+3
* This code will not work without UVM.art2000-06-061-1/+5
* malloc debugging code. Enabled by option MALLOC_DEBUG.art2000-06-061-0/+308