aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeongJae Park <sj38.park@gmail.com>2024-03-31 10:55:58 -0700
committerSeongJae Park <sj38.park@gmail.com>2024-03-31 10:55:58 -0700
commite21501ae0cbeb6c3187c4e99dbde82d0727c23fc (patch)
treeee1d1e95526bb93284902ecd0281f01af3229cbf
parent86eb8dd2b5b2ce581837b9f1351ecc41e9aa8eed (diff)
downloaddamo-e21501ae0cbeb6c3187c4e99dbde82d0727c23fc.tar.gz
damo_record: Fix --footprint help message
The option records not only VSZ and RSS. Fix it. Signed-off-by: SeongJae Park <sj38.park@gmail.com>
-rw-r--r--damo_record.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/damo_record.py b/damo_record.py
index e2831af5..59725e5c 100644
--- a/damo_record.py
+++ b/damo_record.py
@@ -277,6 +277,6 @@ def set_argparser(parser):
parser.add_argument('--profile', action='store_true',
help='record profiling information together')
parser.add_argument('--footprint', action='store_true',
- help='record memory footprint (VSZ and RSS)')
+ help='record memory footprint')
parser.description = 'Record monitoring results'
return parser