summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-04-26 03:02:49 +0000
committerMark Spencer <markster@digium.com>2004-04-26 03:02:49 +0000
commitce44c6ec411ad7c1435b4d882d4479f9ad1a2149 (patch)
treef42052117101b06005792ef797580ab7ba46a2c6 /channel.c
parent459fda5e44df80397dfa344cffdbbf5cd5c0102c (diff)
More select/poll updates for various applications
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2762 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 38462cea9..91b81b9fe 100755
--- a/channel.c
+++ b/channel.c
@@ -594,7 +594,7 @@ int ast_softhangup_nolock(struct ast_channel *chan, int cause)
/* Inform channel driver that we need to be hung up, if it cares */
chan->_softhangup |= cause;
ast_queue_frame(chan, &f);
- /* Interrupt any select call or such */
+ /* Interrupt any poll call or such */
if (chan->blocking)
pthread_kill(chan->blocker, SIGURG);
return res;