aboutsummaryrefslogtreecommitdiffstats
path: root/main/sched.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-02 02:33:04 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-02 02:33:04 +0000
commit748f3cf4565a694398bca176faa409e0320c8a68 (patch)
treeee050a5776fcef01d006a9c4e447f3240686014f /main/sched.c
parent927870cd7d4ae9cda8f269d1ca36373704999a8c (diff)
Add attributes to various API calls, to help track down bugs (and remove a deprecated function)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@115157 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/sched.c')
-rw-r--r--main/sched.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/main/sched.c b/main/sched.c
index 6ef2972b7..d877417b6 100644
--- a/main/sched.c
+++ b/main/sched.c
@@ -252,8 +252,9 @@ static int sched_settime(struct timeval *tv, int when)
int ast_sched_replace_variable(int old_id, struct sched_context *con, int when, ast_sched_cb callback, const void *data, int variable)
{
/* 0 means the schedule item is new; do not delete */
- if (old_id > 0)
- ast_sched_del(con, old_id);
+ if (old_id > 0) {
+ AST_SCHED_DEL(con, old_id);
+ }
return ast_sched_add_variable(con, when, callback, data, variable);
}
@@ -295,8 +296,9 @@ int ast_sched_add_variable(struct sched_context *con, int when, ast_sched_cb cal
int ast_sched_replace(int old_id, struct sched_context *con, int when, ast_sched_cb callback, const void *data)
{
- if (old_id > -1)
- ast_sched_del(con, old_id);
+ if (old_id > -1) {
+ AST_SCHED_DEL(con, old_id);
+ }
return ast_sched_add(con, when, callback, data);
}