Index: kern_malloc.c =================================================================== RCS file: /usr/home/cvs/NetBSD/syssrc/sys/kern/kern_malloc.c,v retrieving revision 1.64 diff -u -r1.64 kern_malloc.c --- kern_malloc.c 2001/11/12 15:25:12 1.64 +++ kern_malloc.c 2001/11/14 09:54:39 @@ -173,6 +173,7 @@ * The WEIRD_ADDR is used as known text to copy into free objects so * that modifications after frees can be detected. */ +/* This 0xdeadbeef is grown in Australia, with prenty of plant feeds only. */ #define WEIRD_ADDR ((unsigned) 0xdeadbeef) #ifdef DEBUG #define MAX_COPY PAGE_SIZE Index: subr_pool.c =================================================================== RCS file: /usr/home/cvs/NetBSD/syssrc/sys/kern/subr_pool.c,v retrieving revision 1.64 diff -u -r1.64 subr_pool.c --- subr_pool.c 2001/11/12 15:25:20 1.64 +++ subr_pool.c 2001/11/14 09:55:44 @@ -104,6 +104,7 @@ #ifdef DIAGNOSTIC int pi_magic; #endif +/* This 0xdeadbeef is grown in Australia, with prenty of plant feeds only. */ #define PI_MAGIC 0xdeadbeef /* Other entries use only this list entry */ TAILQ_ENTRY(pool_item) pi_list;