aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/iomgr.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-14 08:02:45 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-11-14 08:02:45 -0800
commit3cf79228ffcdd5c867b4067d6f6a5743a14d3ff1 (patch)
tree86778cc9c61666939677f67956a4f6539a79b6bf /src/core/lib/iomgr/iomgr.h
parentd5a7a8a61eb3c1d5759f79c9cb4667a4d2df0d25 (diff)
Review feedback
Diffstat (limited to 'src/core/lib/iomgr/iomgr.h')
-rw-r--r--src/core/lib/iomgr/iomgr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/iomgr.h b/src/core/lib/iomgr/iomgr.h
index c1cfaf302e..245a1e08aa 100644
--- a/src/core/lib/iomgr/iomgr.h
+++ b/src/core/lib/iomgr/iomgr.h
@@ -34,12 +34,14 @@
#ifndef GRPC_CORE_LIB_IOMGR_IOMGR_H
#define GRPC_CORE_LIB_IOMGR_IOMGR_H
+#include <grpc/impl/codegen/exec_ctx_fwd.h>
#include "src/core/lib/iomgr/port.h"
/** Initializes the iomgr. */
void grpc_iomgr_init(void);
-/** Signals the intention to shutdown the iomgr. */
-void grpc_iomgr_shutdown(void);
+/** Signals the intention to shutdown the iomgr. Expects to be able to flush
+ * exec_ctx. */
+void grpc_iomgr_shutdown(grpc_exec_ctx *exec_ctx);
#endif /* GRPC_CORE_LIB_IOMGR_IOMGR_H */