diff options
| author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-09-10 03:09:50 -0400 |
|---|---|---|
| committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-10-19 16:54:29 -0400 |
| commit | 23624a2fd62515146c0eace874583fb66586de4c (patch) | |
| tree | 24d25afb94af510f8d0d843c9ef3e168634490d1 /src/ft2csv.c | |
| parent | 861b556c5a9867f2abe600901cbf3054195377c1 (diff) | |
- 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.c | 2 |
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) |
