From d4c64e5d434d8b9ef4488dddbe8807aed9fd7e98 Mon Sep 17 00:00:00 2001 From: rsc Date: Wed, 6 Sep 2006 18:06:04 +0000 Subject: writeable => writable --- kalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kalloc.c') diff --git a/kalloc.c b/kalloc.c index 83338c7..34a55eb 100644 --- a/kalloc.c +++ b/kalloc.c @@ -51,7 +51,7 @@ kfree(char *cp, int len) if(len % PAGE) panic("kfree"); - // XXX fill with junk to help debug + // Fill with junk to catch dangling refs. for(i = 0; i < len; i++) cp[i] = 1; -- cgit v1.2.3