aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-20 12:03:49 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-20 12:03:49 -0400
commit65d2e481b266c51c5efcc4808be258ef7a13d039 (patch)
tree9983c93425ff59cf8bf6760165a2f69045f6edb4
parentdbe9dbe3b16baa55b7867ddd834197421324e131 (diff)
fiddle with the filter threshold
-rw-r--r--src/ft2csv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft2csv.c b/src/ft2csv.c
index 92957c7..3d64b34 100644
--- a/src/ft2csv.c
+++ b/src/ft2csv.c
@@ -12,8 +12,8 @@ static unsigned int incomplete = 0;
12static unsigned int filtered = 0; 12static unsigned int filtered = 0;
13static unsigned int skipped = 0; 13static unsigned int skipped = 0;
14 14
15//static unsigned long long threshold = 2700 * 1000; /* 1 ms == 1 full tick */ 15static unsigned long long threshold = 2700 * 1000; /* 1 ms == 1 full tick */
16static unsigned long long threshold = 2700 * 50; /* 1 ms == 1 full tick */ 16//static unsigned long long threshold = 2700 * 50; /* 1 ms == 1 full tick */
17 17
18static struct timestamp* next(struct timestamp** pos, size_t* count, int cpu) 18static struct timestamp* next(struct timestamp** pos, size_t* count, int cpu)
19{ 19{