aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-27 04:33:30 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-27 04:33:30 +0000
commit755d0faedb17ed3703bbbe853512051d52a25a0b (patch)
tree70093e3522450c8724e55eaa69c3a4c6df516132 /doc
parent0b84675fcfe2fc4ade0abe28d188b49f8b12d96d (diff)
add another janitor project
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@104444 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/janitor-projects.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/janitor-projects.txt b/doc/janitor-projects.txt
index 16ae75527..267486502 100644
--- a/doc/janitor-projects.txt
+++ b/doc/janitor-projects.txt
@@ -1,3 +1,5 @@
+ -- Convert all existing uses of astobj.h to astobj2.h
+
-- There are many places where large character buffers are allocated in structures. There is a new system for string handling that uses dynamically allocatted memory pools which is documented in include/asterisk/stringfields.h. Examples of where they are currently used are the ast_channel structure defined in include/asterisk/channel.h, some structures in chan_sip.c, and chan_zap.c.
-- There is a convenient set of macros defined in include/asterisk/linkedlists.h for handling linked lists. However, there are some open-coded lists throughout the code. Converting linked lists to use these macros will make list handling more consistent and reduce the possibility of coding errors.