diff options
Diffstat (limited to 'src/runtime/testdata')
| -rw-r--r-- | src/runtime/testdata/testwinlibthrow/veh.c | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/src/runtime/testdata/testwinlibthrow/veh.c b/src/runtime/testdata/testwinlibthrow/veh.c index 08c1f9edf0..0ab4c03bd4 100644 --- a/src/runtime/testdata/testwinlibthrow/veh.c +++ b/src/runtime/testdata/testwinlibthrow/veh.c @@ -1,26 +1,26 @@ -//go:build ignore
-
-#include <windows.h>
-
-__declspec(dllexport)
-void RaiseNoExcept(void)
-{
- RaiseException(42, 0, 0, 0);
-}
-
-static DWORD WINAPI ThreadRaiser(void* Context)
-{
- RaiseNoExcept();
- return 0;
-}
-
-__declspec(dllexport)
-void ThreadRaiseNoExcept(void)
-{
- HANDLE thread = CreateThread(0, 0, ThreadRaiser, 0, 0, 0);
- if (0 != thread)
- {
- WaitForSingleObject(thread, INFINITE);
- CloseHandle(thread);
- }
-}
+//go:build ignore + +#include <windows.h> + +__declspec(dllexport) +void RaiseNoExcept(void) +{ + RaiseException(42, 0, 0, 0); +} + +static DWORD WINAPI ThreadRaiser(void* Context) +{ + RaiseNoExcept(); + return 0; +} + +__declspec(dllexport) +void ThreadRaiseNoExcept(void) +{ + HANDLE thread = CreateThread(0, 0, ThreadRaiser, 0, 0, 0); + if (0 != thread) + { + WaitForSingleObject(thread, INFINITE); + CloseHandle(thread); + } +} |
