summaryrefslogtreecommitdiff
path: root/tests/windows-thread.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2026-03-08 17:28:33 +0100
committerJörg Frings-Fürst <debian@jff.email>2026-03-08 17:28:33 +0100
commit5f59a34ab747dde8ede7357f3431bf06bd6002fe (patch)
tree056a4477fd870d454d5be5868cddab829a47f4d2 /tests/windows-thread.c
parent27dae84ed92f1ef0300263091972338d12e78348 (diff)
New upstream version 1.4.2upstream/1.4.2upstream
Diffstat (limited to 'tests/windows-thread.c')
-rw-r--r--tests/windows-thread.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/windows-thread.c b/tests/windows-thread.c
index 9f6fd8b6..74a2a085 100644
--- a/tests/windows-thread.c
+++ b/tests/windows-thread.c
@@ -1,5 +1,5 @@
/* Creating and controlling threads (native Windows implementation).
- Copyright (C) 2005-2025 Free Software Foundation, Inc.
+ Copyright (C) 2005-2026 Free Software Foundation, Inc.
This file is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
@@ -84,11 +84,9 @@ get_current_thread_handle (void)
glwthread_thread_t
glwthread_thread_self (void)
{
- glwthread_thread_t thread;
-
if (self_key == (DWORD)-1)
init_self_key ();
- thread = TlsGetValue (self_key);
+ glwthread_thread_t thread = TlsGetValue (self_key);
if (thread == NULL)
{
/* This happens only in threads that have not been created through
@@ -169,9 +167,7 @@ glwthread_thread_create (glwthread_thread_t *threadp, unsigned int attr,
{
unsigned int thread_id;
- HANDLE thread_handle;
-
- thread_handle = (HANDLE)
+ HANDLE thread_handle = (HANDLE)
_beginthreadex (NULL, 100000, wrapper_func, thread, 0, &thread_id);
/* calls CreateThread with the same arguments */
if (thread_handle == NULL)