threads_posix.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * libusb synchronization using POSIX Threads
  3. *
  4. * Copyright (C) 2011 Vitali Lovich <vlovich@aliph.com>
  5. * Copyright (C) 2011 Peter Stuge <peter@stuge.se>
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifdef _XOPEN_SOURCE
  22. # if _XOPEN_SOURCE < 500
  23. # undef _XOPEN_SOURCE
  24. # define _XOPEN_SOURCE 500
  25. # endif
  26. #else
  27. #define _XOPEN_SOURCE 500
  28. #endif /* _XOPEN_SOURCE */
  29. #include "threads_posix.h"
  30. int usbi_mutex_init_recursive(pthread_mutex_t *mutex, pthread_mutexattr_t *attr)
  31. {
  32. int err;
  33. pthread_mutexattr_t stack_attr;
  34. if (!attr) {
  35. attr = &stack_attr;
  36. err = pthread_mutexattr_init(&stack_attr);
  37. if (err != 0)
  38. return err;
  39. }
  40. err = pthread_mutexattr_settype(attr, PTHREAD_MUTEX_RECURSIVE);
  41. if (err != 0)
  42. goto finish;
  43. err = pthread_mutex_init(mutex, attr);
  44. finish:
  45. if (attr == &stack_attr)
  46. pthread_mutexattr_destroy(&stack_attr);
  47. return err;
  48. }