[asterisk-dev] [Code Review] Add common implementation for a scheduler context with a dedicated thread

Russell Bryant russell at digium.com
Sat Jan 24 15:03:41 CST 2009


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard.digium.com/r/129/
-----------------------------------------------------------

Review request for Asterisk Developers.


Summary
-------

There are a number of modules that create a scheduler context.  Some use a dedicated thread, while others process the scheduler context within the context of a thread that handles other things as well.  I have noticed a number of bugs in both types of implementations related to race conditions between checking how much time until the next scheduled entry and sleeping for an appropriate amount of time.

To address the problems found in the implementations that use a dedicated thread, I have written this patch.  This patch adds a common implementation of a scheduler context that uses a dedicated thread for processing.

chan_iax2 has been updated to use this new API for its dedicated scheduler thread instead of the one that was written into chan_iax2 directly.  The previous implementation has some race conditions that can lead to the scheduler thread sleeping longer than it is supposed to, leading to scheduled actions not running when they are supposed to.  Bugs caused by this type of thing are often very subtle and difficult to track down.


Diffs
-----

  /trunk/channels/chan_iax2.c 170834 
  /trunk/include/asterisk/sched.h 170834 
  /trunk/main/sched.c 170834 

Diff: http://reviewboard.digium.com/r/129/diff


Testing
-------

It compiles.  Basic chan_iax2 usage appears unaffected.


Thanks,

Russell




More information about the asterisk-dev mailing list