aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft2csv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft2csv.c')
-rw-r--r--src/ft2csv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft2csv.c b/src/ft2csv.c
index ce44c7e..b75b284 100644
--- a/src/ft2csv.c
+++ b/src/ft2csv.c
@@ -37,7 +37,6 @@ static int only_cpu = -1;
37 37
38static unsigned int complete = 0; 38static unsigned int complete = 0;
39static unsigned int incomplete = 0; 39static unsigned int incomplete = 0;
40static unsigned int filtered = 0;
41static unsigned int skipped = 0; 40static unsigned int skipped = 0;
42static unsigned int non_rt = 0; 41static unsigned int non_rt = 0;
43static unsigned int interleaved = 0; 42static unsigned int interleaved = 0;
@@ -46,9 +45,9 @@ static unsigned int lvl_a_sched = 0;
46static unsigned int lvl_b_sched = 0; 45static unsigned int lvl_b_sched = 0;
47static unsigned int lvl_c_sched = 0; 46static unsigned int lvl_c_sched = 0;
48static unsigned int other_sched = 0; 47static unsigned int other_sched = 0;
48static unsigned int filtered = 0;
49 49
50#define CYCLES_PER_US 2128 50#define CYCLES_PER_US 2128
51
52static unsigned long long threshold = CYCLES_PER_US * 10000; /* 10 ms == 10 full ticks */ 51static unsigned long long threshold = CYCLES_PER_US * 10000; /* 10 ms == 10 full ticks */
53 52
54static struct timestamp* next(struct timestamp* start, struct timestamp* end, 53static struct timestamp* next(struct timestamp* start, struct timestamp* end,
@@ -428,5 +427,6 @@ int main(int argc, char** argv)
428 interleaved, lvl_a_sched, lvl_b_sched, lvl_c_sched, 427 interleaved, lvl_a_sched, lvl_b_sched, lvl_c_sched,
429 other_sched); 428 other_sched);
430 429
430
431 return 0; 431 return 0;
432} 432}