From 184d2ed770ccddbb9b6f6a452fdff42c16cb709f Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Thu, 2 May 2013 09:40:52 -0700 Subject: [PATCH] bootchart: cleanup unused structs and globals --- src/bootchart/bootchart.h | 8 -------- 1 file changed, 8 deletions(-) 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; -- 2.30.2