From e81210f5fe03ea3dc9c9fb0dba2be79e1dcc03bc Mon Sep 17 00:00:00 2001 From: Aleksey Shipilev Date: Wed, 17 Aug 2022 13:25:02 +0000 Subject: [PATCH] 8292352: 32-bit Windows build failures after JDK-8290059 Reviewed-by: stuefe --- test/lib/native/testlib_threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/native/testlib_threads.h b/test/lib/native/testlib_threads.h index 421d5e6a459..3faf94f8e9f 100644 --- a/test/lib/native/testlib_threads.h +++ b/test/lib/native/testlib_threads.h @@ -54,7 +54,7 @@ static void fatal(const char* message, int code) { // Adapt from the callback type the OS API expects to // our OS-independent PROCEDURE type. #ifdef _WIN32 -static DWORD procedure(_In_ LPVOID ctxt) { +DWORD WINAPI procedure(_In_ LPVOID ctxt) { #else void* procedure(void* ctxt) { #endif