summaryrefslogtreecommitdiff
path: root/main/channel_internal_api.c
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-11-10 08:34:10 -0500
committerGeorge Joseph <gjoseph@digium.com>2016-11-10 08:34:10 -0500
commitfa749866c17f91860d3e9f89742eab3e6f03ecbc (patch)
treea4e8c68c496e227456713592543f17f1f1a40674 /main/channel_internal_api.c
parentf073f648b87d45e4729969fd2d83695c300757d1 (diff)
Revert "Add API for channel frame deferral."
This reverts commit f073f648b87d45e4729969fd2d83695c300757d1. Multiple testsuite failures were detected after the fact. Change-Id: I968c380418bf65c7166f6ecff30fe8e247ea6682
Diffstat (limited to 'main/channel_internal_api.c')
-rw-r--r--main/channel_internal_api.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/main/channel_internal_api.c b/main/channel_internal_api.c
index 50f6c5da9..1cb91e7c3 100644
--- a/main/channel_internal_api.c
+++ b/main/channel_internal_api.c
@@ -221,7 +221,6 @@ struct ast_channel {
struct stasis_cp_single *topics; /*!< Topic for all channel's events */
struct stasis_forward *endpoint_forward; /*!< Subscription for event forwarding to endpoint's topic */
struct stasis_forward *endpoint_cache_forward; /*!< Subscription for cache updates to endpoint's topic */
- struct ast_readq_list deferred_readq;
};
/*! \brief The monotonically increasing integer counter for channel uniqueids */
@@ -1682,8 +1681,3 @@ enum ast_channel_error ast_channel_internal_errno(void)
return *error_code;
}
-
-struct ast_readq_list *ast_channel_deferred_readq(struct ast_channel *chan)
-{
- return &chan->deferred_readq;
-}