diff options
Diffstat (limited to 'tests/windows-thread.c')
| -rw-r--r-- | tests/windows-thread.c | 12 |
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) |
