[asterisk-commits] tilghman: trunk r224527 - /trunk/doc/janitor-projects.txt
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 19 10:50:34 CDT 2009
Author: tilghman
Date: Mon Oct 19 10:50:31 2009
New Revision: 224527
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=224527
Log:
Remove a completed project and add another
Modified:
trunk/doc/janitor-projects.txt
Modified: trunk/doc/janitor-projects.txt
URL: http://svnview.digium.com/svn/asterisk/trunk/doc/janitor-projects.txt?view=diff&rev=224527&r1=224526&r2=224527
==============================================================================
--- trunk/doc/janitor-projects.txt (original)
+++ trunk/doc/janitor-projects.txt Mon Oct 19 10:50:31 2009
@@ -1,18 +1,6 @@
-- Audit uses of usleep() to ensure that the argument is never greater than 1 million.
On some systems, that is considered an error. In any such cases, convert the usage
over to use nanosleep(), instead.
-
- -- There a bunch of places where the result of pbx_builtin_getvar_helper()
- gets stored and used. This is not threadsafe. This code should be replaced
- with the following thread-safe version:
-
- const char *var;
-
- ast_channel_lock(chan);
- if ((var = pbx_builtin_getvar_helper(chan, "MYVAR"))) {
- var = ast_strdupa(var);
- }
- ast_channel_unlock(chan);
-- Convert all existing uses of astobj.h to astobj2.h
-- (chan_sip already in progress in a branch)
@@ -35,4 +23,6 @@
-- Convert all usage of the signal(2) system API to the more portable sigaction(2) system API.
- -- Make the applications in utils/ selectable in menuselect and turn off muted by default. Propably others too.
+ -- Make the applications in utils/ selectable in menuselect and turn off muted by default. Probably others too.
+
+ -- Find options and arguments in Asterisk which specify a time period in seconds or milliseconds and convert them to use the new ast_app_parse_timelen() function.
More information about the asterisk-commits
mailing list