aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft2csv.c
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2012-09-10 03:09:50 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2012-10-19 16:54:29 -0400
commit23624a2fd62515146c0eace874583fb66586de4c (patch)
tree24d25afb94af510f8d0d843c9ef3e168634490d1 /src/ft2csv.c
parent861b556c5a9867f2abe600901cbf3054195377c1 (diff)
Remove two sources of outliers2013.12012.3
- Don't enforce sequentiality constraint on SEND_RESCHED samples. - Refuse samples with negative time deltas (possible due to clock skew).
Diffstat (limited to 'src/ft2csv.c')
-rw-r--r--src/ft2csv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft2csv.c b/src/ft2csv.c
index d8e8e95..6a0402d 100644
--- a/src/ft2csv.c
+++ b/src/ft2csv.c
@@ -289,7 +289,7 @@ static void find_event_by_eid(struct timestamp *first, struct timestamp* end)
289 int interrupted = 0; 289 int interrupted = 0;
290 290
291 second = find_second_ts(first, end, &interrupted); 291 second = find_second_ts(first, end, &interrupted);
292 if (second) { 292 if (second && second->timestamp > first->timestamp) {
293 exec_time = second->timestamp - first->timestamp; 293 exec_time = second->timestamp - first->timestamp;
294 if (first->task_type != TSK_RT && 294 if (first->task_type != TSK_RT &&
295 second->task_type != TSK_RT && !want_best_effort) 295 second->task_type != TSK_RT && !want_best_effort)