summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2013-05-04 16:00:46 +0000
committerMatthew Jordan <mjordan@digium.com>2013-05-04 16:00:46 +0000
commit6e2fe0c9ab1ec9cdd0d45e48fd03217d06cc17ae (patch)
tree6de4bd46b3e2fae5b22734ad076b753aa7c46817 /include
parentb3bb6608eff9d9ad37eade92cc85506df08655b7 (diff)
Clean up documentation; prevent ref leak on exit
This patch: * Cleans up some doxygen * Prevents leaking the system level Stasis topics and messages on exit (users of valgrind will be happier) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@387633 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index 65ef88393..a936594e5 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -127,27 +127,23 @@ const char *ast_file_version_find(const char *file);
char *ast_complete_source_filename(const char *partial, int n);
/*!
- * \brief accessor for the system stasis topic
* \since 12
+ * \brief A \ref stasis topic which publishes messages regarding system changes
*
- * \retval NULL if the stasis topic hasn't been created or has been
- * deliberately disabled. Unless it is ran prior to system
- * initialization, this should never return NULL.
- * \retval a pointer to the System stasis topic
+ * \retval \ref stasis_topic for system level changes
+ * \retval NULL on error
*/
struct stasis_topic *ast_system_topic(void);
/*!
- * \brief accessor for the network change stasis message type
* \since 12
+ * \brief A \ref stasis_message_type for network changes
*
- * \retval NULL if the message type hasn't been created or has been
- * deliberately disabled. Unless it is ran prior to system
- * initialization, this should never return NULL.
- * \retval a pointer to the network change stasis message type
+ * \retval NULL on error
+ * \retval \ref stasis_message_type for network changes
*
* \note Messages of this type should always be issued on and expected from
- * the system stasis topic.
+ * the \ref ast_system_topic \ref stasis topic
*/
struct stasis_message_type *ast_network_change_type(void);