Browse Source

Sleep for 20ms instead.

pull/1200/head
Damir Nedžibović 5 years ago
parent
commit
2d9995a864
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/poller.c

+ 1
- 1
daemon/poller.c View File

@ -620,7 +620,7 @@ void poller_loop(void *d) {
while (!rtpe_shutdown) {
int ret = poller_poll(p, 100);
if (ret < 0)
sleep_ms(10);
sleep_ms(20);
}
}


Loading…
Cancel
Save