diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-07-17 11:49:37 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-07-17 11:49:37 +0000 |
commit | c6ebd0750a4d4cb174a2063283610bcf490f2001 (patch) | |
tree | 575144b76618f5baa733b91e86d9331982ccc16e /share | |
parent | 8273a9eb6ab41ba2f1183b71df5f5271cd84ebd3 (diff) |
malloc debug variables have changed.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/malloc.9 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9 index 4b076a378f0..c9463a2860a 100644 --- a/share/man/man9/malloc.9 +++ b/share/man/man9/malloc.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: malloc.9,v 1.18 2001/07/17 15:52:56 art Exp $ +.\" $OpenBSD: malloc.9,v 1.19 2002/07/17 11:49:36 art Exp $ .\" $NetBSD: malloc.9,v 1.2 1996/10/30 05:29:54 lukem Exp $ .\" .\" Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -411,24 +411,24 @@ A kernel compiled with the option allows for more extensive debugging of memory allocations. You can choose which allocation to debug with the -.Va malloc_deb_type , -.Va malloc_deb_size , -.Va malloc_deb_size_lo +.Va debug_malloc_type , +.Va debug_malloc_size , +.Va debug_malloc_size_lo and -.Va malloc_deb_size_hi +.Va debug_malloc_size_hi variables. -.Va malloc_deb_type +.Va debug_malloc_type should be set to the memory type and -.Va malloc_deb_size +.Va debug_malloc_size should be set to the memory size you want to debug. 0 can be used as a wildcard. -.Va malloc_deb_size_lo +.Va debug_malloc_size_lo and -.Va malloc_deb_size_hi +.Va debug_malloc_size_hi Can be used to specify a range of sizes if the exact size to debug is not known. When those are used, you need to set -.Va malloc_deb_size +.Va debug_malloc_size to the wildcard. .Pp Every call to |