[Asterisk-cvs] asterisk asterisk.c,1.73,1.74 channel.c,1.100,1.101 pbx.c,1.114,1.115
markster at lists.digium.com
markster at lists.digium.com
Sun Apr 25 22:56:58 CDT 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv25594
Modified Files:
asterisk.c channel.c pbx.c
Log Message:
More select/poll updates for various applications
Index: asterisk.c
===================================================================
RCS file: /usr/cvsroot/asterisk/asterisk.c,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- asterisk.c 25 Apr 2004 20:42:45 -0000 1.73
+++ asterisk.c 26 Apr 2004 03:02:49 -0000 1.74
@@ -40,7 +40,6 @@
#include <asterisk/lock.h>
#include <sys/socket.h>
#include <sys/un.h>
-#include <sys/select.h>
#include <sys/wait.h>
#include <string.h>
#include <errno.h>
Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -d -r1.100 -r1.101
--- channel.c 25 Apr 2004 20:42:45 -0000 1.100
+++ channel.c 26 Apr 2004 03:02:49 -0000 1.101
@@ -594,7 +594,7 @@
/* 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;
Index: pbx.c
===================================================================
RCS file: /usr/cvsroot/asterisk/pbx.c,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- pbx.c 22 Apr 2004 00:27:48 -0000 1.114
+++ pbx.c 26 Apr 2004 03:02:49 -0000 1.115
@@ -305,7 +305,7 @@
{ "SetLanguage", pbx_builtin_setlanguage,
"Sets user language",
" SetLanguage(language): Set the channel language to 'language'. This\n"
-"information is used for the generation of numbers, and to select a natural\n"
+"information is used for the generation of numbers, and to choose a natural\n"
"language file when available. For example, if language is set to 'fr' and\n"
"the file 'demo-congrats' is requested to be played, if the file 'fr/demo-\n"
"congrats' exists, then it will play that file, and if not will play the\n"
More information about the svn-commits
mailing list