summaryrefslogtreecommitdiff
path: root/umalloc.c
AgeCommit message (Collapse)AuthorFilesLines
2019-06-11separate source into kernel/ user/ mkfs/Robert Morris1-90/+0
2011-01-11make new code like old codeRuss Cox1-3/+3
Variable declarations at top of function, separate from initialization. Use == 0 instead of ! for checking pointers. Consistent spacing around {, *, casts. Declare 0-parameter functions as (void) not (). Integer valued functions return -1 on failure, 0 on success.
2010-08-31kalloc/kfree now only a page at a timeRobert Morris1-2/+2
do not keep sorted contiguous free list
2007-08-28spaces around else for rtmrsc1-3/+3
2007-08-28more consistent spacingrsc1-8/+8
2007-08-27delete unnecessary #include linesrsc1-2/+2
2007-08-10avoid assignments in declarationsrsc1-1/+1
2007-08-09try to use cp only for curproc[cpu()]rsc1-7/+7
2006-09-06standardize various * conventionsrsc1-20/+20
2006-09-06spacing fixes: no tabs, 2-space indents (for rtm)rsc1-5/+5
2006-08-25kill user process when it generates an unhandled trap (e.g., 13)kaashoek1-6/+0
fix bug in test code of malloc
2006-08-24bug in sbrkkaashoek1-1/+7
test malloc
2006-08-24user-level malloc (untested)kaashoek1-0/+90
nit in sbrk indirect block fix dup to share fd struct