Commit 84ae7d2f authored by Tomasz Wlostowski's avatar Tomasz Wlostowski Committed by Federico Vaga

rt: always check dead time, even if the output is idle


NOTE
This commit has been created by `git subtree` on the Mock Turtle repository
on tag mock-turtle-2.0

This commit will not compile
parent f9542fd9
......@@ -419,9 +419,6 @@ void pulse_queue_pop(struct lrt_pulse_queue *p)
by comparing it with the last processed pulse timestamp. */
static int check_dead_time( struct lrt_output *out, struct wr_timestamp *ts )
{
if(out->idle)
return 1;
int delta_s = ts->seconds - out->prev_pulse.seconds;
int delta_c = ts->ticks - out->prev_pulse.ticks;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment