Commit 3eebaca2 authored by Claes Sjofors's avatar Claes Sjofors

sev, threadsafe fix in qmon

parent bd2c23af
...@@ -960,6 +960,7 @@ get_tmo ( ...@@ -960,6 +960,7 @@ get_tmo (
{ {
float rto; float rto;
pwr_tTime now; pwr_tTime now;
pwr_tDeltaTime drto;
rto = lp->np->link[lp->lix].rtt_rto; rto = lp->np->link[lp->lix].rtt_rto;
...@@ -974,7 +975,7 @@ get_tmo ( ...@@ -974,7 +975,7 @@ get_tmo (
} }
time_GetTimeMonotonic( &now); time_GetTimeMonotonic( &now);
time_Aadd( tmo, &now, time_FloatToD( 0, rto)); time_Aadd( tmo, &now, time_FloatToD( &drto, rto));
} }
static void * static void *
......
...@@ -1205,6 +1205,7 @@ get_tmo ( ...@@ -1205,6 +1205,7 @@ get_tmo (
{ {
float rto; float rto;
pwr_tTime now; pwr_tTime now;
pwr_tDeltaTime drto;
rto = lp->np->link.rtt_rto; rto = lp->np->link.rtt_rto;
...@@ -1220,7 +1221,7 @@ get_tmo ( ...@@ -1220,7 +1221,7 @@ get_tmo (
} }
time_GetTimeMonotonic( &now); time_GetTimeMonotonic( &now);
time_Aadd( tmo, &now, time_FloatToD( 0, rto)); time_Aadd( tmo, &now, time_FloatToD( &drto, rto));
} }
static void * static void *
...@@ -2577,4 +2578,4 @@ void send_state_change() ...@@ -2577,4 +2578,4 @@ void send_state_change()
qcom_Put( &sts, &qmon_qid, &put); qcom_Put( &sts, &qmon_qid, &put);
} }
\ No newline at end of file
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