Misc: Trim and consolidate header file usage
[platform/upstream/libusb.git] / libusb / os / threads_windows.h
1 /*
2  * libusb synchronization on Microsoft Windows
3  *
4  * Copyright © 2010 Michael Plante <michael.plante@gmail.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef LIBUSB_THREADS_WINDOWS_H
22 #define LIBUSB_THREADS_WINDOWS_H
23
24 #define USBI_MUTEX_INITIALIZER  0L
25 typedef LONG usbi_mutex_static_t;
26 static inline void usbi_mutex_static_lock(usbi_mutex_static_t *mutex)
27 {
28         while (InterlockedExchange(mutex, 1L) == 1L)
29                 SleepEx(0, TRUE);
30 }
31 static inline void usbi_mutex_static_unlock(usbi_mutex_static_t *mutex)
32 {
33         InterlockedExchange(mutex, 0L);
34 }
35
36 typedef CRITICAL_SECTION usbi_mutex_t;
37 static inline int usbi_mutex_init(usbi_mutex_t *mutex)
38 {
39         InitializeCriticalSection(mutex);
40         return 0;
41 }
42 static inline void usbi_mutex_lock(usbi_mutex_t *mutex)
43 {
44         EnterCriticalSection(mutex);
45 }
46 static inline void usbi_mutex_unlock(usbi_mutex_t *mutex)
47 {
48         LeaveCriticalSection(mutex);
49 }
50 static inline int usbi_mutex_trylock(usbi_mutex_t *mutex)
51 {
52         return !TryEnterCriticalSection(mutex);
53 }
54 static inline void usbi_mutex_destroy(usbi_mutex_t *mutex)
55 {
56         DeleteCriticalSection(mutex);
57 }
58
59 // We *were* getting timespec from pthread.h:
60 #if !defined(HAVE_STRUCT_TIMESPEC) && !defined(_TIMESPEC_DEFINED)
61 #define HAVE_STRUCT_TIMESPEC 1
62 #define _TIMESPEC_DEFINED 1
63 struct timespec {
64         long tv_sec;
65         long tv_nsec;
66 };
67 #endif /* HAVE_STRUCT_TIMESPEC || _TIMESPEC_DEFINED */
68
69 // We *were* getting ETIMEDOUT from pthread.h:
70 #ifndef ETIMEDOUT
71 #define ETIMEDOUT       10060   /* This is the value in winsock.h. */
72 #endif
73
74 typedef CONDITION_VARIABLE usbi_cond_t;
75 static inline void usbi_cond_init(usbi_cond_t *cond)
76 {
77         InitializeConditionVariable(cond);
78 }
79 static inline void usbi_cond_wait(usbi_cond_t *cond, usbi_mutex_t *mutex)
80 {
81         (void)SleepConditionVariableCS(cond, mutex, INFINITE);
82 }
83 int usbi_cond_timedwait(usbi_cond_t *cond,
84         usbi_mutex_t *mutex, const struct timeval *tv);
85 static inline void usbi_cond_broadcast(usbi_cond_t *cond)
86 {
87         WakeAllConditionVariable(cond);
88 }
89 static inline void usbi_cond_destroy(usbi_cond_t *cond)
90 {
91         UNUSED(cond);
92 }
93
94 typedef DWORD usbi_tls_key_t;
95 static inline void usbi_tls_key_create(usbi_tls_key_t *key)
96 {
97         *key = TlsAlloc();
98 }
99 static inline void *usbi_tls_key_get(usbi_tls_key_t key)
100 {
101         return TlsGetValue(key);
102 }
103 static inline void usbi_tls_key_set(usbi_tls_key_t key, void *ptr)
104 {
105         (void)TlsSetValue(key, ptr);
106 }
107 static inline void usbi_tls_key_delete(usbi_tls_key_t key)
108 {
109         (void)TlsFree(key);
110 }
111
112 static inline int usbi_get_tid(void)
113 {
114         return (int)GetCurrentThreadId();
115 }
116
117 #endif /* LIBUSB_THREADS_WINDOWS_H */