summaryrefslogtreecommitdiff
path: root/src/vmon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vmon.c')
-rw-r--r--src/vmon.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vmon.c b/src/vmon.c
index 6a08a14..ababea6 100644
--- a/src/vmon.c
+++ b/src/vmon.c
@@ -50,6 +50,7 @@ typedef struct vmon_t {
int dump_procs;
int mem_locked;
int reaper;
+ int no_threads;
time_t start_time;
int snapshots_interval;
int snapshot;
@@ -207,6 +208,7 @@ static void print_help(void)
" -D --dump-procs Dump libvmon internal processes table (debugging aid)\n"
" -L --mem-locked Lock in memory using mlockall(MCL_CURRENT|MCL_FUTURE)\n"
" -R --reaper Become the child subreaper (see prctl(2); PR_SET_CHILD_SUBREAPER)\n"
+ " -T --no-threads Don't monitor threads beyond tracking their potential children\n"
" -W --width Chart width\n"
" -z --hertz Sample rate in hertz\n"
"-------------------------------------------------------------------------------"
@@ -503,6 +505,9 @@ static int vmon_handle_argv(vmon_t *vmon, int argc, const char * const *argv)
} else if (is_flag(*argv, "-R", "--reaper")) {
vmon->reaper = 1;
last = argv;
+ } else if (is_flag(*argv, "-T", "--no-threads")) {
+ vmon->no_threads = 1;
+ last = argv;
} else if ((*argv)[0] == '-') {
VWM_ERROR("Unrecognized argument: \"%s\", try --help\n", argv[0]);
exit(EXIT_FAILURE);
© All Rights Reserved