diff -r 000000000000 -r 6474c204b198 python/psutil/examples/pmap.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/psutil/examples/pmap.py Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,35 @@ +#!/usr/bin/env python + +# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +""" +A clone of 'pmap' utility on Linux, 'vmmap' on OSX and 'procstat -v' on BSD. +Report memory map of a process. +""" + +import sys + +import psutil +from psutil._compat import print_ + +def main(): + if len(sys.argv) != 2: + sys.exit('usage: pmap pid') + p = psutil.Process(int(sys.argv[1])) + print_("pid=%s, name=%s" % (p.pid, p.name)) + templ = "%-16s %10s %-7s %s" + print_(templ % ("Address", "RSS", "Mode", "Mapping")) + total_rss = 0 + for m in p.get_memory_maps(grouped=False): + total_rss += m.rss + print_(templ % (m.addr.split('-')[0].zfill(16), + str(m.rss / 1024) + 'K' , + m.perms, + m.path)) + print_("-" * 33) + print_(templ % ("Total", str(total_rss / 1024) + 'K', '', '')) + +if __name__ == '__main__': + main()