aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/lockfree_event.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-11-09 17:46:29 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2017-11-09 17:46:29 -0800
commit4e9265c828f0b559b5fdba04913fed46bf771399 (patch)
tree4a379fc2bdc037753cf8d81f8b86327e4bc50a42 /src/core/lib/iomgr/lockfree_event.h
parent0ee7574732a06e8cace4e099a678f4bd5dbff679 (diff)
parentd9da7387b8057f3bd99a417a5ee905377bce9296 (diff)
Merge with master
Diffstat (limited to 'src/core/lib/iomgr/lockfree_event.h')
-rw-r--r--src/core/lib/iomgr/lockfree_event.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/lib/iomgr/lockfree_event.h b/src/core/lib/iomgr/lockfree_event.h
index cf681fc874..08a1ae40a6 100644
--- a/src/core/lib/iomgr/lockfree_event.h
+++ b/src/core/lib/iomgr/lockfree_event.h
@@ -29,15 +29,15 @@
extern "C" {
#endif
-void grpc_lfev_init(gpr_atm *state);
-void grpc_lfev_destroy(gpr_atm *state);
-bool grpc_lfev_is_shutdown(gpr_atm *state);
+void grpc_lfev_init(gpr_atm* state);
+void grpc_lfev_destroy(gpr_atm* state);
+bool grpc_lfev_is_shutdown(gpr_atm* state);
-void grpc_lfev_notify_on(gpr_atm *state, grpc_closure *closure,
- const char *variable);
+void grpc_lfev_notify_on(gpr_atm* state, grpc_closure* closure,
+ const char* variable);
/* Returns true on first successful shutdown */
-bool grpc_lfev_set_shutdown(gpr_atm *state, grpc_error *shutdown_err);
-void grpc_lfev_set_ready(gpr_atm *state, const char *variable);
+bool grpc_lfev_set_shutdown(gpr_atm* state, grpc_error* shutdown_err);
+void grpc_lfev_set_ready(gpr_atm* state, const char* variable);
#ifdef __cplusplus
}