K 10 svn:author V 3 phk K 8 svn:date V 27 2000-10-20T17:54:55.000000Z K 7 svn:log V 296 Introduce the M_ZERO flag to malloc(9) Instead of: foo = malloc(sizeof(foo), M_WAIT); bzero(foo, sizeof(foo)); You can now (and please do) use: foo = malloc(sizeof(foo), M_WAIT | M_ZERO); In the future this will enable us to do idle-time pre-zeroing of malloc-space. END