X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbootchart%2Fbootchart.h;h=d0273421de2b47c8faf040a2264c27a22c1716e6;hp=ee1e67604da19c1f5671386ef43014b6a350ac67;hb=184d2ed770ccddbb9b6f6a452fdff42c16cb709f;hpb=8dfb6e718d621a5115bd3b8e7e826195dc6bfe14 diff --git a/src/bootchart/bootchart.h b/src/bootchart/bootchart.h index ee1e67604..d0273421d 100644 --- a/src/bootchart/bootchart.h +++ b/src/bootchart/bootchart.h @@ -30,7 +30,6 @@ #define MAXCPUS 16 #define MAXPIDS 65535 -#define MAXSAMPLES 8192 struct block_stat_struct { /* /proc/vmstat pgpgin & pgpgout */ @@ -44,11 +43,6 @@ struct cpu_stat_sample_struct { double waittime; }; -struct cpu_stat_struct { - /* per cpu array */ - struct cpu_stat_sample_struct sample[MAXSAMPLES]; -}; - /* per process, per sample data we will log */ struct ps_sched_struct { /* /proc//schedstat fields 1 & 2 */ @@ -68,7 +62,6 @@ struct list_sample_data { double sampletime; int entropy_avail; struct block_stat_struct blockstat; - struct cpu_stat_struct cpustat; LIST_FIELDS(struct list_sample_data, link); /* DLL */ int counter; }; @@ -117,7 +110,6 @@ extern double log_start; extern double sampletime[]; extern struct ps_struct *ps_first; extern struct block_stat_struct blockstat[]; -extern struct cpu_stat_struct cpustat[]; extern int pscount; extern bool arg_relative; extern bool arg_filter;