Skip to content
Snippets Groups Projects
  1. Mar 12, 2018
  2. Mar 11, 2018
  3. Mar 09, 2018
  4. Mar 08, 2018
  5. Mar 07, 2018
  6. Mar 06, 2018
  7. Mar 05, 2018
  8. Mar 03, 2018
  9. Mar 02, 2018
  10. Mar 01, 2018
  11. Feb 28, 2018
    • Richard Mudgett's avatar
      pjproject: Add cache_pools debugging option. · 1a36a452
      Richard Mudgett authored
      The pool cache gets in the way of finding use after free errors of memory
      pool contents.  Tools like valgrind and MALLOC_DEBUG don't know when a
      pool is released because it gets put into the cache instead of being
      freed.
      
      * Added the "cache_pools" option to pjproject.conf.  Disabling the option
      helps track down pool content mismanagement when using valgrind or
      MALLOC_DEBUG.  The cache gets in the way of determining if the pool
      contents are used after free and who freed it.
      
      To disable the pool caching simply disable the cache_pools option in
      pjproject.conf and restart Asterisk.
      
      Sample pjproject.conf setting:
      [startup]
      cache_pools=no
      
      * Made current users of the caching pool factory initialization and
      destruction calls call common routines to create and destroy cached pools.
      
      ASTERISK-27704
      
      Change-Id: I64d5befbaeed2532f93aa027a51eb52347d2b828
      1a36a452
  12. Feb 26, 2018
  13. Feb 25, 2018
    • Corey Farrell's avatar
      gitreview: Reorder and add padding. · eacee03f
      Corey Farrell authored
      Change-Id: I459dc320a8c9452a01eed6f403d786741587c890
      eacee03f
    • Michael Cargile's avatar
      apps/app_amd.c: Fixed total time and silence calculations · 7b012360
      Michael Cargile authored
      Between Asterisk 11 and Asterisk 13 there was a significant increase
      in the number of AST_FRAME_NULL frames being processed by app_amd.c's
      main loop. Each AST_FRAME_NULL frame was being counted as 100ms
      towards the total time and silence. This may have been accurate
      when app_amd.c was orginally added, but it is not in Asterisk 13.
      As such the total analysis time and silence calculations were way
      off effectively breaking app_amd.c
      
      * Additional debug messages were added
      * AST_FRAME_NULL are now ignored
      
      ASTERISK-27610
      
      Change-Id: I18aca01af98f87c1e168e6ae0d85c136d1df5ea9
      7b012360
Loading