aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-04-26 03:02:49 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-04-26 03:02:49 +0000
commit88adf19dffc1ff442acd6fd16f7990b6fbdc8642 (patch)
treef42052117101b06005792ef797580ab7ba46a2c6 /channel.c
parentf292ffbc2756919c88e69b987431a753e4007ef1 (diff)
More select/poll updates for various applications
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2762 f38db490-d61c-443f-a65b-d21fe96a405b
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;