aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/lb_policy.h
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-02-26 12:00:21 -0800
committerGravatar Vijay Pai <vpai@google.com>2016-02-26 12:00:21 -0800
commite0205e568c556fd1fea7d4fe7bfd4d897482c39c (patch)
treefd399d9dff728414a3283051894e130947f6848b /src/core/client_config/lb_policy.h
parent962aff35bdbfcd3b16f0f8b2fa76b67a3a3df31e (diff)
parent814169681d97885149482ceba9d2bab4f20983c2 (diff)
Merge pull request #5433 from ctiller/hide-the-pollset-set-redux
Pollset & pollset-set implementation firewalls
Diffstat (limited to 'src/core/client_config/lb_policy.h')
-rw-r--r--src/core/client_config/lb_policy.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/client_config/lb_policy.h b/src/core/client_config/lb_policy.h
index db5238c8ca..3457390606 100644
--- a/src/core/client_config/lb_policy.h
+++ b/src/core/client_config/lb_policy.h
@@ -1,6 +1,6 @@
/*
*
- * Copyright 2015, Google Inc.
+ * Copyright 2015-2016, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -48,7 +48,8 @@ typedef void (*grpc_lb_completion)(void *cb_arg, grpc_subchannel *subchannel,
struct grpc_lb_policy {
const grpc_lb_policy_vtable *vtable;
gpr_atm ref_pair;
- grpc_pollset_set interested_parties;
+ /* owned pointer to interested parties in load balancing decisions */
+ grpc_pollset_set *interested_parties;
};
struct grpc_lb_policy_vtable {