summaryrefslogtreecommitdiff
path: root/tests/windows-thread.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2026-03-10 13:24:07 +0100
committerJörg Frings-Fürst <debian@jff.email>2026-03-10 13:24:07 +0100
commitcfd1f17f1a85d95ea12bca8dae42add7dad1ad11 (patch)
tree8016486f8ee7157213f2d09ff2491bfa9c94638a /tests/windows-thread.c
parent14e4d584d0121031ec40e6c35869745f1747ff29 (diff)
parent1403307d6e2fb4e7b5d97a35f40d1e95134561ab (diff)
Merge branch 'release/debian/1.4.2-1'HEADdebian/1.4.2-1master
Diffstat (limited to 'tests/windows-thread.c')
-rw-r--r--tests/windows-thread.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/windows-thread.c b/tests/windows-thread.c
index 6a47a31f..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-2024 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
@@ -29,7 +29,7 @@
#include "windows-once.h"
#include "windows-tls.h"
-/* The Thread-Local Storage (TLS) key that allows to access each thread's
+/* The Thread-Local Storage (TLS) key that allows accessing each thread's
'struct glwthread_thread_struct *' pointer. */
static DWORD self_key = (DWORD)-1;
@@ -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)