1. 16 Jul, 2018 1 commit
  2. 15 Jul, 2018 1 commit
    • Yue Wang's avatar
      Support timed_wait in microseconds level · 79937c94
      Yue Wang authored
      Some Audio plugin (such as ALSA, and soon CoreAudio) already support microsecond level buffer time. However, current interval less than 1000 microseconds will cause a bug that the code treated as 0 ms.
      79937c94
  3. 06 Jul, 2018 1 commit
  4. 09 Feb, 2018 2 commits
  5. 24 Jan, 2018 1 commit
  6. 08 Jan, 2018 3 commits
  7. 07 Jan, 2018 3 commits
  8. 04 Jan, 2018 1 commit
  9. 02 Jan, 2018 3 commits
  10. 22 Dec, 2017 1 commit
  11. 18 Dec, 2017 1 commit
  12. 12 Dec, 2017 1 commit
  13. 26 Nov, 2017 1 commit
  14. 04 Jun, 2017 1 commit
  15. 08 May, 2017 1 commit
  16. 10 Feb, 2017 3 commits
  17. 17 Jan, 2017 1 commit
  18. 03 Jan, 2017 4 commits
  19. 29 Dec, 2016 2 commits
  20. 28 Dec, 2016 1 commit
  21. 19 Sep, 2016 1 commit
    • Christian Körner's avatar
      thread/PosixCond: fix timed_wait · 8bbfb5cd
      Christian Körner authored
      pthread_cond_timedwait() in PosixCond.hxx:timed_wait(PosixMutex...) returns
      EINVAL, if ts.tv_nsec >= 1E9. In this case, it returns to early.
      
      Find attached a patch which fixes this. I chose a compare-subtraction method
      to keep ts.tv_nsec below 1E9.
      
      Another option would be
      ts.tv_sec += ts.tv_nsec / 1000000000;
      ts.tv_nsec %= 1000000000;
      
      But I guess this takes more time on some ARM processors, which don't support
      hardware division.
      8bbfb5cd
  22. 04 Sep, 2016 2 commits
  23. 17 Jun, 2016 2 commits
  24. 02 May, 2016 1 commit
  25. 01 Mar, 2016 1 commit