[asterisk-commits] qwell: trunk r387802 - /trunk/include/asterisk.h

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue May 7 12:53:53 CDT 2013


Author: qwell
Date: Tue May  7 12:53:50 2013
New Revision: 387802

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=387802
Log:
Fix build breakage, from LOW_MEMORY fix.

Modified:
    trunk/include/asterisk.h

Modified: trunk/include/asterisk.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk.h?view=diff&rev=387802&r1=387801&r2=387802
==============================================================================
--- trunk/include/asterisk.h (original)
+++ trunk/include/asterisk.h Tue May  7 12:53:50 2013
@@ -127,27 +127,6 @@
 char *ast_complete_source_filename(const char *partial, int n);
 
 /*!
- * \since 12
- * \brief A \ref stasis topic which publishes messages regarding system changes
- *
- * \retval \ref stasis_topic for system level changes
- * \retval NULL on error
- */
-struct stasis_topic *ast_system_topic(void);
-
-/*!
- * \since 12
- * \brief A \ref stasis_message_type for network changes
- *
- * \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 \ref ast_system_topic \ref stasis topic
- */
-struct stasis_message_type *ast_network_change_type(void);
-
-/*!
  * \brief Register/unregister a source code file with the core.
  * \param file the source file name
  * \param version the version string (typically a SVN revision keyword string)
@@ -221,6 +200,27 @@
 #define ast_mark(a, b) do { } while (0)
 #endif /* LOW_MEMORY */
 
+/*!
+ * \since 12
+ * \brief A \ref stasis topic which publishes messages regarding system changes
+ *
+ * \retval \ref stasis_topic for system level changes
+ * \retval NULL on error
+ */
+struct stasis_topic *ast_system_topic(void);
+
+/*!
+ * \since 12
+ * \brief A \ref stasis_message_type for network changes
+ *
+ * \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 \ref ast_system_topic \ref stasis topic
+ */
+struct stasis_message_type *ast_network_change_type(void);
+
 /*! \brief
  * Definition of various structures that many asterisk files need,
  * but only because they need to know that the type exists.




More information about the asterisk-commits mailing list