1999-12-13 21:07:27 -05:00
|
|
|
#!/usr/bin/perl
|
2000-02-03 18:50:32 -05:00
|
|
|
#
|
2016-06-27 00:56:38 -04:00
|
|
|
# Copyright (C) 1999-2001, 2004, 2007, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2012-06-28 21:39:47 -04:00
|
|
|
#
|
2016-06-27 00:56:38 -04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1999-12-13 21:07:27 -05:00
|
|
|
|
2012-03-06 20:41:11 -05:00
|
|
|
# $Id$
|
2000-06-22 18:00:42 -04:00
|
|
|
|
1999-12-13 21:07:27 -05:00
|
|
|
# Massage the output from ISC_MEM_DEBUG to extract mem_get() calls
|
|
|
|
|
# with no corresponding mem_put().
|
|
|
|
|
|
2000-01-13 19:33:14 -05:00
|
|
|
$mem_stats = '';
|
|
|
|
|
|
1999-12-13 21:07:27 -05:00
|
|
|
while (<>) {
|
2000-09-12 21:58:02 -04:00
|
|
|
$gets{$1.$2} = $_ if (/add (?:0x)?([0-9a-f]+) size (?:0x)?([0-9]+) file/);
|
|
|
|
|
delete $gets{$1.$2} if /del (?:0x)?([0-9a-f]+) size (?:0x)?([0-9]+) file/;
|
2000-01-13 19:33:14 -05:00
|
|
|
$mem_stats .= $_ if /\d+ gets, +(\d+) rem/ && $1 > 0;
|
1999-12-13 21:07:27 -05:00
|
|
|
}
|
|
|
|
|
print join('', values %gets);
|
2000-01-13 19:33:14 -05:00
|
|
|
print $mem_stats;
|
|
|
|
|
|
|
|
|
|
exit(0);
|