Ryan Paderna
Results
1
comments of
Ryan Paderna
```C void rtimer_run_next(void) { struct rtimer *t; if(next_rtimer == NULL) { return; } t = next_rtimer; next_rtimer = NULL; /* 1st call */ t->func(t, t->ptr); if(next_rtimer != NULL) { /*...