[asterisk-commits] rmudgett: branch 12 r400661 - in /branches/12: apps/ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 7 10:37:20 CDT 2013
Author: rmudgett
Date: Mon Oct 7 10:37:16 2013
New Revision: 400661
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=400661
Log:
Miscellaneous stand alone comment cleanups.
Modified:
branches/12/apps/app_queue.c
branches/12/include/asterisk/manager.h
branches/12/include/asterisk/stasis.h
Modified: branches/12/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/apps/app_queue.c?view=diff&rev=400661&r1=400660&r2=400661
==============================================================================
--- branches/12/apps/app_queue.c (original)
+++ branches/12/apps/app_queue.c Mon Oct 7 10:37:16 2013
@@ -1268,8 +1268,12 @@
#define DEFAULT_TIMEOUT 15
#define RECHECK 1 /*!< Recheck every second to see we we're at the top yet */
#define MAX_PERIODIC_ANNOUNCEMENTS 10 /*!< The maximum periodic announcements we can have */
-#define DEFAULT_MIN_ANNOUNCE_FREQUENCY 15 /*!< The minimum number of seconds between position announcements \
- The default value of 15 provides backwards compatibility */
+/*!
+ * \brief The minimum number of seconds between position announcements.
+ * \note The default value of 15 provides backwards compatibility.
+ */
+#define DEFAULT_MIN_ANNOUNCE_FREQUENCY 15
+
#define MAX_QUEUE_BUCKETS 53
#define RES_OKAY 0 /*!< Action completed */
Modified: branches/12/include/asterisk/manager.h
URL: http://svnview.digium.com/svn/asterisk/branches/12/include/asterisk/manager.h?view=diff&rev=400661&r1=400660&r2=400661
==============================================================================
--- branches/12/include/asterisk/manager.h (original)
+++ branches/12/include/asterisk/manager.h Mon Oct 7 10:37:16 2013
@@ -518,8 +518,6 @@
*/
struct stasis_topic *ast_manager_get_topic(void);
-struct ast_json;
-
/*!
* \since 12
* \brief Publish an event to AMI
Modified: branches/12/include/asterisk/stasis.h
URL: http://svnview.digium.com/svn/asterisk/branches/12/include/asterisk/stasis.h?view=diff&rev=400661&r1=400660&r2=400661
==============================================================================
--- branches/12/include/asterisk/stasis.h (original)
+++ branches/12/include/asterisk/stasis.h Mon Oct 7 10:37:16 2013
@@ -731,7 +731,7 @@
void stasis_log_bad_type_access(const char *name);
/*!
- * \brief Boiler-plate removing macro for defining message types.
+ * \brief Boiler-plate messaging macro for defining public message types.
*
* \code
* STASIS_MESSAGE_TYPE_DEFN(ast_foo_type,
@@ -757,7 +757,7 @@
}
/*!
- * \brief Boiler-plate removing macro for defining local message types.
+ * \brief Boiler-plate messaging macro for defining local message types.
*
* \code
* STASIS_MESSAGE_TYPE_DEFN_LOCAL(ast_foo_type,
@@ -783,7 +783,7 @@
}
/*!
-* \brief Boiler-plate removing macro for initializing message types.
+* \brief Boiler-plate messaging macro for initializing message types.
*
* \code
* if (STASIS_MESSAGE_TYPE_INIT(ast_foo_type) != 0) {
@@ -805,7 +805,7 @@
})
/*!
- * \brief Boiler-plate removing macro for cleaning up message types.
+ * \brief Boiler-plate messaging macro for cleaning up message types.
*
* Note that if your type is defined in core instead of a loadable module, you
* should call message type cleanup from an ast_register_cleanup() handler
More information about the asterisk-commits
mailing list