aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/sched.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-03 02:21:57 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-03 02:21:57 +0000
commitf4b3e63b4c591bb03cc553c3cfeda9ff8074e8b9 (patch)
tree7bef34b1ef5b26aca8500374c4584d772dd6683d /include/asterisk/sched.h
parentaf74749f6d8532abb6931b0bbcbca6675a58037d (diff)
correct documentation for ast_sched_add (bug #4136)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5556 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/sched.h')
-rwxr-xr-xinclude/asterisk/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/sched.h b/include/asterisk/sched.h
index a97dce8d6..52d29e4e0 100755
--- a/include/asterisk/sched.h
+++ b/include/asterisk/sched.h
@@ -62,7 +62,7 @@ typedef int (*ast_sched_cb)(void *data);
* Schedule an event to take place at some point in the future. callback
* will be called with data as the argument, when milliseconds into the
* future (approximately)
- * Returns 0 on success, -1 on failure
+ * Returns a schedule item ID on success, -1 on failure
*/
extern int ast_sched_add(struct sched_context *con, int when, ast_sched_cb callback, void *data);