aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/support/thd_windows.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/support/thd_windows.cc')
-rw-r--r--src/core/lib/support/thd_windows.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/lib/support/thd_windows.cc b/src/core/lib/support/thd_windows.cc
index 0875c2f03e..f920770f32 100644
--- a/src/core/lib/support/thd_windows.cc
+++ b/src/core/lib/support/thd_windows.cc
@@ -65,7 +65,8 @@ static DWORD WINAPI thread_body(void* v) {
return 0;
}
-int gpr_thd_new(gpr_thd_id* t, void (*thd_body)(void* arg), void* arg,
+int gpr_thd_new(gpr_thd_id* t, const char* thd_name,
+ void (*thd_body)(void* arg), void* arg,
const gpr_thd_options* options) {
HANDLE handle;
struct thd_info* info = (struct thd_info*)gpr_malloc(sizeof(*info));