Show More
@@ -1,32 +1,32 | |||
|
1 | 1 | # memory.py - track memory usage |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2009 Matt Mackall <mpm@selenic.com> and others |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | '''helper extension to measure memory usage |
|
9 | 9 | |
|
10 | 10 | Reads current and peak memory usage from ``/proc/self/status`` and |
|
11 | 11 | prints it to ``stderr`` on exit. |
|
12 | 12 | ''' |
|
13 | 13 | |
|
14 | 14 | from __future__ import absolute_import |
|
15 | 15 | import atexit |
|
16 | 16 | |
|
17 | 17 | def memusage(ui): |
|
18 | 18 | """Report memory usage of the current process.""" |
|
19 | 19 | result = {'peak': 0, 'rss': 0} |
|
20 | 20 | with open('/proc/self/status', 'r') as status: |
|
21 | 21 | # This will only work on systems with a /proc file system |
|
22 | 22 | # (like Linux). |
|
23 | 23 | for line in status: |
|
24 | 24 | parts = line.split() |
|
25 | 25 | key = parts[0][2:-1].lower() |
|
26 | 26 | if key in result: |
|
27 | 27 | result[key] = int(parts[1]) |
|
28 |
ui.write_err(", ".join(["%s: %.1f MiB" % (k |
|
|
29 |
for k |
|
|
28 | ui.write_err(", ".join(["%s: %.1f MiB" % (k, v / 1024.0) | |
|
29 | for k, v in result.iteritems()]) + "\n") | |
|
30 | 30 | |
|
31 | 31 | def extsetup(ui): |
|
32 | 32 | atexit.register(memusage, ui) |
General Comments 0
You need to be logged in to leave comments.
Login now