]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix some incorrect documentation of sched_thread functions.
authorMark Michelson <mmichelson@digium.com>
Fri, 28 Aug 2009 18:41:23 +0000 (18:41 +0000)
committerMark Michelson <mmichelson@digium.com>
Fri, 28 Aug 2009 18:41:23 +0000 (18:41 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@214650 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk/sched.h

index 759672dfef03a2a03d2157a526cfd360e2acbc46..4f5fb4217091d239162fb2d01f2184f8d5ec3084 100644 (file)
@@ -349,8 +349,8 @@ struct ast_sched_thread *ast_sched_thread_destroy(struct ast_sched_thread *st);
  * \param cb the function to call when the scheduled time arrives
  * \param data the parameter to pass to the scheduler callback
  *
- * \retval 0 success
- * \retval non-zero failure
+ * \retval -1 Failure
+ * \retval >=0 Sched ID of added task
  */
 int ast_sched_thread_add(struct ast_sched_thread *st, int when, ast_sched_cb cb,
                const void *data);
@@ -369,8 +369,8 @@ int ast_sched_thread_add(struct ast_sched_thread *st, int when, ast_sched_cb cb,
  *        non-zero means re-schedule using the time provided when the scheduler
  *        entry was first created.
  *
- * \retval 0 success
- * \retval non-zero failure
+ * \retval -1 Failure
+ * \retval >=0 Sched ID of added task
  */
 int ast_sched_thread_add_variable(struct ast_sched_thread *st, int when, ast_sched_cb cb,
                const void *data, int variable);