diff options
Diffstat (limited to 'kalloc.c')
-rw-r--r-- | kalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |