diff options
author | rwatson <rwatson@FreeBSD.org> | 2005-07-18 14:14:17 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2005-07-18 14:14:17 +0000 |
commit | accc7914fddfdb0006efd5a9e6f9f44e782985e2 (patch) | |
tree | 723f6a605310531e88cfef8cc6ec468f2d454d2d /lib/libmemstat/memstat.h | |
parent | 11bed7ab9b88a2894fbcb4ca04f274e893280059 (diff) | |
download | FreeBSD-src-accc7914fddfdb0006efd5a9e6f9f44e782985e2.zip FreeBSD-src-accc7914fddfdb0006efd5a9e6f9f44e782985e2.tar.gz |
Bump MEMSTAT_MAXCALLER to 16. memtop(8) seems to be able to happily
consume that many slots to track snapshot-to-snapshot changes and
running totals. And 16 is a nice round number.
MFC after: 1 week
Diffstat (limited to 'lib/libmemstat/memstat.h')
-rw-r--r-- | lib/libmemstat/memstat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libmemstat/memstat.h b/lib/libmemstat/memstat.h index 0743693..262c4df 100644 --- a/lib/libmemstat/memstat.h +++ b/lib/libmemstat/memstat.h @@ -41,7 +41,7 @@ * corrupting internal libmemstat(3) data structures. A compile time check * in the application is probably appropriate. */ -#define MEMSTAT_MAXCALLER 8 +#define MEMSTAT_MAXCALLER 16 /* * libmemstat(3) is able to extract memory data from different allocators; |