threads_posix.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * libusb synchronization using POSIX Threads
  3. *
  4. * Copyright (C) 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. #ifndef LIBUSB_THREADS_POSIX_H
  21. #define LIBUSB_THREADS_POSIX_H
  22. #include <pthread.h>
  23. #define usbi_mutex_static_t pthread_mutex_t
  24. #define USBI_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
  25. #define usbi_mutex_static_lock pthread_mutex_lock
  26. #define usbi_mutex_static_unlock pthread_mutex_unlock
  27. #define usbi_mutex_t pthread_mutex_t
  28. #define usbi_mutex_init pthread_mutex_init
  29. #define usbi_mutex_lock pthread_mutex_lock
  30. #define usbi_mutex_unlock pthread_mutex_unlock
  31. #define usbi_mutex_trylock pthread_mutex_trylock
  32. #define usbi_mutex_destroy pthread_mutex_destroy
  33. #define usbi_cond_t pthread_cond_t
  34. #define usbi_cond_init pthread_cond_init
  35. #define usbi_cond_wait pthread_cond_wait
  36. #define usbi_cond_timedwait pthread_cond_timedwait
  37. #define usbi_cond_broadcast pthread_cond_broadcast
  38. #define usbi_cond_destroy pthread_cond_destroy
  39. #define usbi_cond_signal pthread_cond_signal
  40. extern int usbi_mutex_init_recursive(pthread_mutex_t *mutex, pthread_mutexattr_t *attr);
  41. #endif /* LIBUSB_THREADS_POSIX_H */