mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Add support for using epoll instead of poll. This should increase scalability and is done in such a way that we should be able to add support for other poll() replacements.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@78683 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -207,9 +207,9 @@ static AST_LIST_HEAD_STATIC(agents, agent_pvt); /*!< Holds the list of agents (l
|
||||
if (p->chan) { \
|
||||
for (x=0;x<AST_MAX_FDS;x++) {\
|
||||
if (x != AST_TIMING_FD) \
|
||||
ast->fds[x] = p->chan->fds[x]; \
|
||||
ast_channel_set_fd(ast, x, p->chan->fds[x]); \
|
||||
} \
|
||||
ast->fds[AST_AGENT_FD] = p->chan->fds[AST_TIMING_FD]; \
|
||||
ast_channel_set_fd(ast, AST_AGENT_FD, p->chan->fds[AST_TIMING_FD]); \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
|
Reference in New Issue
Block a user