Files
asterisk/main
Russell Bryant f5bf66bcd7 This commit adds a scheduler API call, ast_sched_replace that can be used
in place of a very common construct.  I also used it in a number of places
in chan_sip.

  if (id > -1)
     ast_sched_del(sched, id);
  id = ast_sched_add(sched, ...);

changes to:

  ast_sched_replace(id, sched, ...);


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79861 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2007-08-17 14:07:44 +00:00
..
2007-08-14 14:17:43 +00:00
2007-08-01 15:28:02 +00:00
2007-06-24 17:42:39 +00:00
2007-08-10 18:37:32 +00:00
2007-07-16 20:58:56 +00:00
2007-08-07 15:40:43 +00:00
2007-06-24 18:51:41 +00:00
2007-06-24 18:51:41 +00:00
2007-07-30 20:19:13 +00:00