diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2013-02-14 21:32:49 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2013-02-14 21:36:45 +0100 |
commit | f7900e258dfb8ab55f333d02d96f908ca0ea8899 (patch) | |
tree | 5ea3f278094931de8f37eaef5ded6bfa3ac1e3c9 /src/bootchart/bootchart.h | |
parent | 47a81ba2e101058459328d2da3d9b950a8030c86 (diff) |
bootchart: use conf-parser & CamelCase names in .conf
Diffstat (limited to 'src/bootchart/bootchart.h')
-rw-r--r-- | src/bootchart/bootchart.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/bootchart/bootchart.h b/src/bootchart/bootchart.h index 84e9420998..ea26c93c46 100644 --- a/src/bootchart/bootchart.h +++ b/src/bootchart/bootchart.h @@ -21,6 +21,7 @@ ***/ #include <dirent.h> +#include <stdbool.h> #define MAXCPUS 16 #define MAXPIDS 65535 @@ -98,11 +99,11 @@ extern struct ps_struct *ps_first; extern struct block_stat_struct blockstat[]; extern struct cpu_stat_struct cpustat[]; extern int pscount; -extern int relative; -extern int filter; -extern int pss; -extern int entropy; -extern int initcall; +extern bool relative; +extern bool filter; +extern bool pss; +extern bool entropy; +extern bool initcall; extern int samples; extern int cpus; extern int len; |