summaryrefslogtreecommitdiff
path: root/main/pbx_private.h
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2016-07-15 20:28:16 -0400
committerCorey Farrell <git@cfware.com>2016-07-21 13:58:26 -0400
commita36a174c4b15b9aaf915a89824bdfffa468cc112 (patch)
tree639253a2f7254cb262367bf72651d131b23e88d6 /main/pbx_private.h
parent3ca6407dab1d40478d656d3e46b1122ee0995037 (diff)
pbx: Create pbx_sw.c for management of 'struct ast_sw'.
This changes context switches from a linked list to a vector, makes 'struct ast_sw' opaque to pbx.c. Although ast_walk_context_switches 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_switches_count (AST_VECTOR_SIZE) * ast_context_switches_get (AST_VECTOR_GET) As with ast_walk_context_switches callers of these functions are expected to have locked contexts. Only a few places in Asterisk walked the switches, they have been converted to use the new functions. Change-Id: I08deb016df22eee8288eb03de62593e45a1f0998
Diffstat (limited to 'main/pbx_private.h')
-rw-r--r--main/pbx_private.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/main/pbx_private.h b/main/pbx_private.h
index 2b7d9828b..da1060e0e 100644
--- a/main/pbx_private.h
+++ b/main/pbx_private.h
@@ -49,6 +49,12 @@ void include_free(struct ast_include *inc);
int include_valid(const struct ast_include *inc);
const char *include_rname(const struct ast_include *inc);
+/*! pbx_sw.c */
+struct ast_sw;
+AST_VECTOR(ast_sws, struct ast_sw *);
+struct ast_sw *sw_alloc(const char *value, const char *data, int eval, const char *registrar);
+void sw_free(struct ast_sw *sw);
+
/*! pbx_builtins.c functions needed by pbx.c */
int indicate_congestion(struct ast_channel *, const char *);
int indicate_busy(struct ast_channel *, const char *);