aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-19 15:50:31 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-19 15:50:31 +0000
commit572b8e3077054e8f5e6b7ca8aea5360c66e3d88c (patch)
tree818b9ec589bd2cc2c980c1678eb67eddf4470fd7 /doc
parente04cdc660e01f18bfac366446e0a537547a41623 (diff)
Remove a completed project and add another
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@224527 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/janitor-projects.txt16
1 files changed, 3 insertions, 13 deletions
diff --git a/doc/janitor-projects.txt b/doc/janitor-projects.txt
index 1e918eff2..debd462f6 100644
--- a/doc/janitor-projects.txt
+++ b/doc/janitor-projects.txt
@@ -2,18 +2,6 @@
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.