aboutsummaryrefslogtreecommitdiff
path: root/src/core/lib/iomgr/block_annotate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/iomgr/block_annotate.h')
-rw-r--r--src/core/lib/iomgr/block_annotate.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/lib/iomgr/block_annotate.h b/src/core/lib/iomgr/block_annotate.h
index fcbfe9eb1a..9db3cf0199 100644
--- a/src/core/lib/iomgr/block_annotate.h
+++ b/src/core/lib/iomgr/block_annotate.h
@@ -43,10 +43,10 @@ void gpr_thd_end_blocking_region();
do { \
gpr_thd_end_blocking_region(); \
} while (0)
-#define GRPC_SCHEDULING_END_BLOCKING_REGION_WITH_EXEC_CTX(ec) \
- do { \
- gpr_thd_end_blocking_region(); \
- grpc_exec_ctx_invalidate_now((ec)); \
+#define GRPC_SCHEDULING_END_BLOCKING_REGION_WITH_EXEC_CTX() \
+ do { \
+ gpr_thd_end_blocking_region(); \
+ grpc_exec_ctx_invalidate_now(); \
} while (0)
#else
#define GRPC_SCHEDULING_START_BLOCKING_REGION \
@@ -55,9 +55,9 @@ void gpr_thd_end_blocking_region();
#define GRPC_SCHEDULING_END_BLOCKING_REGION_NO_EXEC_CTX \
do { \
} while (0)
-#define GRPC_SCHEDULING_END_BLOCKING_REGION_WITH_EXEC_CTX(ec) \
- do { \
- grpc_exec_ctx_invalidate_now((ec)); \
+#define GRPC_SCHEDULING_END_BLOCKING_REGION_WITH_EXEC_CTX() \
+ do { \
+ grpc_exec_ctx_invalidate_now(); \
} while (0)
#endif