mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 15:08:53 +00:00
Tweak comment for why usleep is used.
........ Merged revisions 396656 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 396657 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396658 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -207,7 +207,9 @@ static void *hash_test_count(void *d)
|
|||||||
ast_hashtab_end_traversal(it);
|
ast_hashtab_end_traversal(it);
|
||||||
|
|
||||||
if (last_count == count) {
|
if (last_count == count) {
|
||||||
/* Allow other threads to run. */
|
/* Give other threads ample chance to run, note that using sched_yield here does not
|
||||||
|
* provide enough of a chance and can cause this thread to starve others.
|
||||||
|
*/
|
||||||
usleep(1);
|
usleep(1);
|
||||||
} else if (last_count > count) {
|
} else if (last_count > count) {
|
||||||
/* Make sure the hashtable never shrinks */
|
/* Make sure the hashtable never shrinks */
|
||||||
|
Reference in New Issue
Block a user