aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel/subchannel_call_holder.h
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-22 14:03:45 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-22 14:03:45 -0700
commit39fd22193bedbef97412c857c2d2f73eb5752d2c (patch)
tree25de3d0318982450932256af107801c3cb58a824 /src/core/channel/subchannel_call_holder.h
parent2b0d66caa003e4c12dc7183479533b03abbb9d0c (diff)
parentfb349b9f7150c20a98565bfffdceaab6b50a92a2 (diff)
Merge pull request #5899 from dgquintas/uchannels_kthxbai
removed uchannels
Diffstat (limited to 'src/core/channel/subchannel_call_holder.h')
-rw-r--r--src/core/channel/subchannel_call_holder.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/channel/subchannel_call_holder.h b/src/core/channel/subchannel_call_holder.h
index 9086cdc882..84b4657db4 100644
--- a/src/core/channel/subchannel_call_holder.h
+++ b/src/core/channel/subchannel_call_holder.h
@@ -55,15 +55,14 @@ typedef enum {
for initial metadata before trying to create a call object,
and handling cancellation gracefully.
- Both the channel and uchannel filter use this as their call_data. */
+ The channel filter uses this as their call_data. */
typedef struct grpc_subchannel_call_holder {
/** either 0 for no call, 1 for cancelled, or a pointer to a
grpc_subchannel_call */
gpr_atm subchannel_call;
/** Helper function to choose the subchannel on which to create
the call object. Channel filter delegates to the load
- balancing policy (once it's ready); uchannel returns
- immediately */
+ balancing policy (once it's ready). */
grpc_subchannel_call_holder_pick_subchannel pick_subchannel;
void *pick_subchannel_arg;