mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-06 01:45:11 +00:00
Merged revisions 110615 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r110615 | russell | 2008-03-24 12:36:04 -0500 (Mon, 24 Mar 2008) | 10 lines Merged revisions 110614 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r110614 | russell | 2008-03-24 12:34:56 -0500 (Mon, 24 Mar 2008) | 2 lines Turn a NOTICE into a DEBUG message. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@110616 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1086,7 +1086,7 @@ static int __schedule_action(void (*func)(const void *data), const void *data, c
|
||||
}
|
||||
time(&t);
|
||||
if (t != lasterror)
|
||||
ast_log(LOG_NOTICE, "Out of idle IAX2 threads for scheduling!\n");
|
||||
ast_debug(1, "Out of idle IAX2 threads for scheduling!\n");
|
||||
lasterror = t;
|
||||
|
||||
return -1;
|
||||
@@ -7430,7 +7430,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
|
||||
if (!(thread = find_idle_thread())) {
|
||||
time(&t);
|
||||
if (t != last_errtime)
|
||||
ast_log(LOG_NOTICE, "Out of idle IAX2 threads for I/O, pausing!\n");
|
||||
ast_debug(1, "Out of idle IAX2 threads for I/O, pausing!\n");
|
||||
last_errtime = t;
|
||||
usleep(1);
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user