[svn-commits] tilghman: branch 1.6.0 r124452 - in /branches/1.6.0: ./ apps/app_rpt.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 20 18:14:01 CDT 2008


Author: tilghman
Date: Fri Jun 20 18:14:01 2008
New Revision: 124452

URL: http://svn.digium.com/view/asterisk?view=rev&rev=124452
Log:
Merged revisions 124451 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r124451 | tilghman | 2008-06-20 18:13:21 -0500 (Fri, 20 Jun 2008) | 14 lines

Merged revisions 124450 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r124450 | tilghman | 2008-06-20 18:12:33 -0500 (Fri, 20 Jun 2008) | 6 lines

usleep with a value over 1,000,000 is nonportable.  Changing to use sleep()
instead.  (closes issue #12814)
 Reported by: pputman
 Patches: 
       app_rtp_sleep.patch uploaded by pputman (license 81)

........

................

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/apps/app_rpt.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/apps/app_rpt.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/apps/app_rpt.c?view=diff&rev=124452&r1=124451&r2=124452
==============================================================================
--- branches/1.6.0/apps/app_rpt.c (original)
+++ branches/1.6.0/apps/app_rpt.c Fri Jun 20 18:14:01 2008
@@ -6800,7 +6800,7 @@
 			}
 
 		}
-		usleep(2000000);
+		sleep(2);
 	}
 	ast_config_destroy(cfg);
 	pthread_exit(NULL);




More information about the svn-commits mailing list