aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/closure.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:45:28 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:45:28 -0700
commit1be70ccdb84ec41975cc018f6b2a2a89cf5072ee (patch)
treed4e6890ca32762bf786e2b801d3c26b27ec707ee /src/core/iomgr/closure.h
parent45724b35e411fef7c5da66a74c78428c11d56843 (diff)
Move arguments to the start of lists
Diffstat (limited to 'src/core/iomgr/closure.h')
-rw-r--r--src/core/iomgr/closure.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/iomgr/closure.h b/src/core/iomgr/closure.h
index 3566f0b985..90d9e328a1 100644
--- a/src/core/iomgr/closure.h
+++ b/src/core/iomgr/closure.h
@@ -50,7 +50,7 @@ typedef struct grpc_closure_list
* \param arg Arbitrary input.
* \param success An indication on the state of the iomgr. On false, cleanup
* actions should be taken (eg, shutdown). */
-typedef void (*grpc_iomgr_cb_func) (void *arg, int success, grpc_closure_list * closure_list);
+typedef void (*grpc_iomgr_cb_func) (grpc_exec_ctx * exec_ctx, void *arg, int success);
/** A closure over a grpc_iomgr_cb_func. */
struct grpc_closure