diff options
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; |