projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20af2eb
)
If no timingfd, use sched timing
author
Mark Spencer
<markster@digium.com>
Tue, 1 Jul 2003 23:09:18 +0000
(23:09 +0000)
committer
Mark Spencer
<markster@digium.com>
Tue, 1 Jul 2003 23:09:18 +0000
(23:09 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1153
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
file.c
patch
|
blob
|
history
diff --git
a/file.c
b/file.c
index
b3e92e3
..
fa0eb25
100755
(executable)
--- a/
file.c
+++ b/
file.c
@@
-524,7
+524,9
@@
static int ast_readaudio_callback(void *data)
}
if (whennext != s->lasttimeout) {
#ifdef ZAPTEL_OPTIMIZATIONS
- ast_settimeout(s->owner, whennext, ast_readaudio_callback, s);
+ if (s->timingfd > -1)
+ ast_settimeout(s->owner, whennext, ast_readaudio_callback, s);
+ else
#else
s->owner->streamid = ast_sched_add(s->owner->sched, whennext/8, ast_readaudio_callback, s);
#endif