On 25 Jan 2016, at 17:01, suraev(a)alumni.ntnu.no
wrote:
while (!quit) {
- osmo_gsm_timers_check();
- osmo_gsm_timers_prepare();
- osmo_gsm_timers_update();
+ osmo_timers_check();
+ osmo_timers_prepare();
+ osmo_timers_update();
osmo_select_main(0);
timers_check,_prepare and _update are called from osmo_select_main
already so they are not needed.
The general idea to work in frame numbers makes a lot of sense, the
question is why we are not working with it anymore.
a.) Our fn's are not monotonic and we can work in time then we do not
need this code
b.) We should do things based on the fn (e.g. the T200 issues we found
in LAPDm show that it can be a good idea).
holger