aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft2csv.c
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2012-10-07 22:22:03 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2012-10-07 22:22:03 -0400
commit4021c90126844cdab2bc5eef7e1ef16c5aa3b36d (patch)
treef03d80b8506f714dd42249a7210cd75b88a3c36d /src/ft2csv.c
parent88dc12391b14d62011f382a6556da0529e9afdc7 (diff)
parentfc6f91abc9cf80350b756547c8fb9fc5cbdcbddc (diff)
Merge remote-tracking branch 'remotes/mpi/master' into wip-mc
Conflicts: src/ft2csv.c src/ftdump.c
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}