aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/iomgr_uv.c
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2017-07-20 16:41:27 -0700
committerGravatar murgatroid99 <mlumish@google.com>2017-07-20 16:41:27 -0700
commit9d7def71fe04ec25b7cace53adb5775dbcccc353 (patch)
tree915d6f47fd3e9cc9595759016448448d8077cbf8 /src/core/lib/iomgr/iomgr_uv.c
parent269d3b4faae39ac4a6be66baa5b5fc9a2efb86df (diff)
Address comments: change names and remove unnecessary lines
Diffstat (limited to 'src/core/lib/iomgr/iomgr_uv.c')
-rw-r--r--src/core/lib/iomgr/iomgr_uv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/iomgr_uv.c b/src/core/lib/iomgr/iomgr_uv.c
index ffec6bcf76..df5d23af3b 100644
--- a/src/core/lib/iomgr/iomgr_uv.c
+++ b/src/core/lib/iomgr/iomgr_uv.c
@@ -26,14 +26,14 @@
#include "src/core/lib/iomgr/pollset_uv.h"
#include "src/core/lib/iomgr/tcp_uv.h"
-gpr_thd_id grpc_init_thread;
+gpr_thd_id g_init_thread;
void grpc_iomgr_platform_init(void) {
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
grpc_pollset_global_init();
grpc_register_tracer(&grpc_tcp_trace);
grpc_executor_set_threading(&exec_ctx, false);
- grpc_init_thread = gpr_thd_currentid();
+ g_init_thread = gpr_thd_currentid();
grpc_exec_ctx_finish(&exec_ctx);
}
void grpc_iomgr_platform_flush(void) {}