-
- Downloads
pbx: Create pbx_include.c for management of 'struct ast_include'.
This changes context includes from a linked list to a vector, makes 'struct ast_include' opaque to pbx.c. Although ast_walk_context_includes is maintained the procedure is no longer efficient except for the first call (inc==NULL). This functionality is replaced by two new functions implemented by vector macros. * ast_context_includes_count (AST_VECTOR_SIZE) * ast_context_includes_get (AST_VECTOR_GET) As with ast_walk_context_includes callers of these functions are expected to have locked contexts. Only a few places in Asterisk walked the includes, they have been converted to use the new functions. const have been applied where possible to parameters for ast_include functions. Change-Id: Ib5c882e27cf96fb2aec67a39c18b4c71c9c83b60
Showing
- apps/app_macro.c 4 additions, 2 deletionsapps/app_macro.c
- apps/app_while.c 4 additions, 2 deletionsapps/app_while.c
- include/asterisk/pbx.h 10 additions, 4 deletionsinclude/asterisk/pbx.h
- main/pbx.c 98 additions, 126 deletionsmain/pbx.c
- main/pbx_include.c 112 additions, 0 deletionsmain/pbx_include.c
- main/pbx_private.h 11 additions, 0 deletionsmain/pbx_private.h
- pbx/pbx_config.c 24 additions, 10 deletionspbx/pbx_config.c
- res/ael/pval.c 1 addition, 1 deletionres/ael/pval.c
- utils/conf2ael.c 2 additions, 2 deletionsutils/conf2ael.c
- utils/extconf.c 13 additions, 0 deletionsutils/extconf.c
Loading
Please register or sign in to comment