| 200 | |
| 201 | |
| 202 | void |
| 203 | tmr_reset( struct iperf_time* nowP, Timer* t ) |
| 204 | { |
| 205 | struct iperf_time now; |
| 206 | |
| 207 | getnow( nowP, &now ); |
| 208 | t->time = now; |
| 209 | iperf_time_add_usecs( &t->time, t->usecs ); |
| 210 | list_resort( t ); |
| 211 | } |
| 212 | |
| 213 | |
| 214 | void |
no test coverage detected
searching dependent graphs…