[asterisk-commits] russell: branch russell/timing_module_priority r176035 - /team/russell/timing...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Feb 16 09:58:40 CST 2009


Author: russell
Date: Mon Feb 16 09:58:40 2009
New Revision: 176035

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=176035
Log:
minor documentation corrections

Modified:
    team/russell/timing_module_priority/include/asterisk/timing.h

Modified: team/russell/timing_module_priority/include/asterisk/timing.h
URL: http://svn.digium.com/svn-view/asterisk/team/russell/timing_module_priority/include/asterisk/timing.h?view=diff&rev=176035&r1=176034&r2=176035
==============================================================================
--- team/russell/timing_module_priority/include/asterisk/timing.h (original)
+++ team/russell/timing_module_priority/include/asterisk/timing.h Mon Feb 16 09:58:40 2009
@@ -85,23 +85,23 @@
 };
 
 /*!
- * \brief Install a set of timing functions.
- *
- * \param funcs An instance of the \c ast_timer_functions structure with pointers
+ * \brief Register a set of timing functions.
+ *
+ * \param funcs An instance of the \c ast_timing_interfaces structure with pointers
  *        to the functions provided by the timing implementation.
  *
  * \retval NULL failure 
- * \retval non-Null handle to be passed to ast_uninstall_timing_functions() on success
+ * \retval non-Null handle to be passed to ast_unregister_timing_interface() on success
  */
 #define ast_register_timing_interface(i) _ast_register_timing_interface(i, ast_module_info->self)
 void *_ast_register_timing_interface(struct ast_timing_interface *funcs,
 		struct ast_module *mod);
 
 /*!
- * \brief Uninstall a previously-installed set of timing functions.
+ * \brief Unregister a previously registered timing interface.
  *
  * \param handle The handle returned from a prior successful call to
- *        ast_install_timing_functions().
+ *        ast_register_timing_interface().
  *
  * \retval 0 success
  * \retval non-zero failure




More information about the asterisk-commits mailing list