diff options
author | Harald Hoyer <harald@redhat.com> | 2013-03-07 08:52:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-03-07 16:09:22 +0100 |
commit | e90f9fa4d1cab6f73fc502fe9ef705c1bb2912a0 (patch) | |
tree | b51656f91da0c129aae7eecc3bd3463463ff984c /src/bootchart/bootchart.h | |
parent | 650001c6f7532601a9e5f685c348dae9541352cf (diff) |
bootchart: add parameter "-C" to expand process names to the full cmdline
Diffstat (limited to 'src/bootchart/bootchart.h')
-rw-r--r-- | src/bootchart/bootchart.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootchart/bootchart.h b/src/bootchart/bootchart.h index ea26c93c46..c42f97140a 100644 --- a/src/bootchart/bootchart.h +++ b/src/bootchart/bootchart.h @@ -61,7 +61,7 @@ struct ps_struct { struct ps_struct *next; /* siblings */ /* must match - otherwise it's a new process with same PID */ - char name[16]; + char name[256]; int pid; int ppid; @@ -101,6 +101,7 @@ extern struct cpu_stat_struct cpustat[]; extern int pscount; extern bool relative; extern bool filter; +extern bool show_cmdline; extern bool pss; extern bool entropy; extern bool initcall; |