summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Latham <lathama@gmail.com>2012-09-22 20:43:30 +0000
committerAndrew Latham <lathama@gmail.com>2012-09-22 20:43:30 +0000
commitfd98835f1fb45d2b745bd273a590cf488b4c11dd (patch)
tree6755c6c5fd972d7867a0595f4ac64d5d56acfdb8 /utils
parentca8aeeef1bead57973f91fce0e4ed239d73a00b3 (diff)
Doxygen Updates Janitor Work
* Whitespace, doc-blocks, spelling, case, missing and incorrect tags. * Add cleanup to Makefile for the Doxygen configuration update * Start updating Doxygen configuration for cleaner output * Enable inclusion of configuration files into documentation * remove mantisworkflow... * update documentation README * Add markup to Tilghman's email and talk with him about updating his email, he knows... * no code changes on this commit other than the mentioned Makefile change (issue ASTERISK-20259) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@373384 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils')
-rw-r--r--utils/refcounter.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/utils/refcounter.c b/utils/refcounter.c
index 58cfa0de2..b2ad5b0a6 100644
--- a/utils/refcounter.c
+++ b/utils/refcounter.c
@@ -15,9 +15,10 @@
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
+
/*! \file
*
- * \brief A program to read in the /tmp/refs file generated
+ * \brief A program to read in the /tmp/refs file generated
* by astobj2 code when the REF_DEBUG macro is defined.
* It will read in the file line by line, and
* sort the data out by object, and check to see
@@ -28,15 +29,15 @@
* this program reads in the /tmp/refs file and
* generates no output. No news is good news.
* The contents of the /tmp/refs file looks like this:
+ * \verbatim
+ * 0x84fd718 -1 astobj2.c:926:cd_cb_debug (deref object via container destroy) [@1]
+ * 0x84fd718 =1 chan_sip.c:19760:build_user (allocate a user struct)
+ * 0x84fd718 +1 chan_sip.c:21558:reload_config (link user into users table) [@1]
+ * 0x84fd718 -1 chan_sip.c:2376:unref_user (Unref the result of build_user. Now, the table link is the only one left.) [@2]
+ * 0x84fd718 **call destructor** astobj2.c:926:cd_cb_debug (deref object via container destroy)
+ * \endverbatim
*
-0x84fd718 -1 astobj2.c:926:cd_cb_debug (deref object via container destroy) [@1]
-0x84fd718 =1 chan_sip.c:19760:build_user (allocate a user struct)
-0x84fd718 +1 chan_sip.c:21558:reload_config (link user into users table) [@1]
-0x84fd718 -1 chan_sip.c:2376:unref_user (Unref the result of build_user. Now, the table link is the only one left.) [@2]
-0x84fd718 **call destructor** astobj2.c:926:cd_cb_debug (deref object via container destroy)
- *
- *
- * \author Steve Murphy <murf@digium.com>
+ * \author Steve Murphy <murf@digium.com>
*/
/*** MODULEINFO