summaryrefslogtreecommitdiff
path: root/include/asterisk/astobj2.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-08-31 21:29:25 +0000
committerRussell Bryant <russell@russellbryant.com>2007-08-31 21:29:25 +0000
commit5872c6d7571a1fb6bdeda7bb6a1ad10d74f61ccf (patch)
tree94ec6670fa4b2d240cf8d5481efde5898c292280 /include/asterisk/astobj2.h
parenta748fc664796a31f47922693c3849fa7970786b2 (diff)
Merged revisions 81418 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r81418 | russell | 2007-08-31 16:27:49 -0500 (Fri, 31 Aug 2007) | 2 lines Remove references to a debugging parameter that does not exist ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81419 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/astobj2.h')
-rw-r--r--include/asterisk/astobj2.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asterisk/astobj2.h b/include/asterisk/astobj2.h
index 7663b1b65..0f51ceab1 100644
--- a/include/asterisk/astobj2.h
+++ b/include/asterisk/astobj2.h
@@ -89,7 +89,7 @@ parameters. At the moment, this is done as follows:
ao2_container *c;
- c = ao2_container_alloc(MAX_BUCKETS, my_hash_fn, my_cmp_fn, my_dump_fn);
+ c = ao2_container_alloc(MAX_BUCKETS, my_hash_fn, my_cmp_fn);
where
- MAX_BUCKETS is the number of buckets in the hash table,
@@ -98,7 +98,6 @@ where
by the container's code);
- my_cmp_fn() is the default comparison function used when doing
searches on the container,
-- my_dump_fn() is a helper function used only for debugging.
A container knows little or nothing about the object itself,
other than the fact that it has been created by ao2_alloc()