1 /*
2  * libusb synchronization using POSIX Threads
3  *
4  * Copyright © 2010 Peter Stuge <peter@stuge.se>
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_POSIX_H
22 #define LIBUSB_THREADS_POSIX_H
23 
24 #include <pthread.h>
25 #ifdef HAVE_SYS_TIME_H
26 #include <sys/time.h>
27 #endif
28 
29 #define USBI_MUTEX_INITIALIZER	PTHREAD_MUTEX_INITIALIZER
30 typedef pthread_mutex_t usbi_mutex_static_t;
usbi_mutex_static_lock(usbi_mutex_static_t * mutex)31 static inline void usbi_mutex_static_lock(usbi_mutex_static_t *mutex)
32 {
33 	(void)pthread_mutex_lock(mutex);
34 }
usbi_mutex_static_unlock(usbi_mutex_static_t * mutex)35 static inline void usbi_mutex_static_unlock(usbi_mutex_static_t *mutex)
36 {
37 	(void)pthread_mutex_unlock(mutex);
38 }
39 
40 typedef pthread_mutex_t usbi_mutex_t;
usbi_mutex_init(usbi_mutex_t * mutex)41 static inline int usbi_mutex_init(usbi_mutex_t *mutex)
42 {
43 	return pthread_mutex_init(mutex, NULL);
44 }
usbi_mutex_lock(usbi_mutex_t * mutex)45 static inline void usbi_mutex_lock(usbi_mutex_t *mutex)
46 {
47 	(void)pthread_mutex_lock(mutex);
48 }
usbi_mutex_unlock(usbi_mutex_t * mutex)49 static inline void usbi_mutex_unlock(usbi_mutex_t *mutex)
50 {
51 	(void)pthread_mutex_unlock(mutex);
52 }
usbi_mutex_trylock(usbi_mutex_t * mutex)53 static inline int usbi_mutex_trylock(usbi_mutex_t *mutex)
54 {
55 	return pthread_mutex_trylock(mutex);
56 }
usbi_mutex_destroy(usbi_mutex_t * mutex)57 static inline void usbi_mutex_destroy(usbi_mutex_t *mutex)
58 {
59 	(void)pthread_mutex_destroy(mutex);
60 }
61 
62 typedef pthread_cond_t usbi_cond_t;
usbi_cond_init(pthread_cond_t * cond)63 static inline void usbi_cond_init(pthread_cond_t *cond)
64 {
65 	(void)pthread_cond_init(cond, NULL);
66 }
usbi_cond_wait(usbi_cond_t * cond,usbi_mutex_t * mutex)67 static inline int usbi_cond_wait(usbi_cond_t *cond, usbi_mutex_t *mutex)
68 {
69 	return pthread_cond_wait(cond, mutex);
70 }
71 int usbi_cond_timedwait(usbi_cond_t *cond,
72 	usbi_mutex_t *mutex, const struct timeval *tv);
usbi_cond_broadcast(usbi_cond_t * cond)73 static inline void usbi_cond_broadcast(usbi_cond_t *cond)
74 {
75 	(void)pthread_cond_broadcast(cond);
76 }
usbi_cond_destroy(usbi_cond_t * cond)77 static inline void usbi_cond_destroy(usbi_cond_t *cond)
78 {
79 	(void)pthread_cond_destroy(cond);
80 }
81 
82 typedef pthread_key_t usbi_tls_key_t;
usbi_tls_key_create(usbi_tls_key_t * key)83 static inline void usbi_tls_key_create(usbi_tls_key_t *key)
84 {
85 	(void)pthread_key_create(key, NULL);
86 }
usbi_tls_key_get(usbi_tls_key_t key)87 static inline void *usbi_tls_key_get(usbi_tls_key_t key)
88 {
89 	return pthread_getspecific(key);
90 }
usbi_tls_key_set(usbi_tls_key_t key,void * ptr)91 static inline void usbi_tls_key_set(usbi_tls_key_t key, void *ptr)
92 {
93 	(void)pthread_setspecific(key, ptr);
94 }
usbi_tls_key_delete(usbi_tls_key_t key)95 static inline void usbi_tls_key_delete(usbi_tls_key_t key)
96 {
97 	(void)pthread_key_delete(key);
98 }
99 
100 int usbi_get_tid(void);
101 
102 #endif /* LIBUSB_THREADS_POSIX_H */
103