aboutsummaryrefslogtreecommitdiff
path: root/idlestat.h
diff options
context:
space:
mode:
Diffstat (limited to 'idlestat.h')
-rw-r--r--idlestat.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/idlestat.h b/idlestat.h
index 64b6ad5..4397984 100644
--- a/idlestat.h
+++ b/idlestat.h
@@ -116,4 +116,25 @@ struct cpuidle_datas {
int nrcpus;
};
+enum modes {
+ TRACE = 0,
+ IMPORT
+};
+
+enum formats {
+ IDLESTAT_HEADER = 0,
+ TRACE_CMD_HEADER
+};
+
+struct program_options {
+ bool debug;
+ bool dump;
+ int iterations;
+ int mode;
+ int format;
+ unsigned int duration;
+ char *filename;
+};
+
+
#endif