This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
Sleep for 20ms instead.
pull/1200/head
Damir Nedžibović
5 years ago
parent
eded168a38
commit
2d9995a864
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
(
1
0
)
;
sleep_ms
(
2
0
)
;
}
}
Write
Preview
Loading…
Cancel
Save