summaryrefslogtreecommitdiff
path: root/main/channel_internal_api.c
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-11-10 08:41:55 -0500
committerGeorge Joseph <gjoseph@digium.com>2016-11-10 08:41:55 -0500
commit6b5a7ced136b7178ae0b2ba39221eba1cd2e37c9 (patch)
tree67b934f0d73ff74fddad4bb7fd1e06a5eb928eaa /main/channel_internal_api.c
parent9231a56cf3d6f5eca1bf2d37d827453400690773 (diff)
Revert "Add API for channel frame deferral."
This reverts commit 9231a56cf3d6f5eca1bf2d37d827453400690773. Multiple testsuite failures were detected after the fact. Change-Id: I3bac8d7c3ddb69a4ddf6c5d6de0ffa5ff7ff3af7
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 4bc770d3b..90f59d64a 100644
--- a/main/channel_internal_api.c
+++ b/main/channel_internal_api.c
@@ -223,7 +223,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 */
@@ -1699,8 +1698,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;
-}