1. 08 Jan, 2018 3 commits
  2. 07 Jan, 2018 3 commits
  3. 04 Jan, 2018 1 commit
  4. 02 Jan, 2018 3 commits
  5. 22 Dec, 2017 1 commit
  6. 18 Dec, 2017 1 commit
  7. 12 Dec, 2017 1 commit
  8. 26 Nov, 2017 1 commit
  9. 04 Jun, 2017 1 commit
  10. 08 May, 2017 1 commit
  11. 10 Feb, 2017 3 commits
  12. 17 Jan, 2017 1 commit
  13. 03 Jan, 2017 4 commits
  14. 29 Dec, 2016 2 commits
  15. 28 Dec, 2016 1 commit
  16. 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
  17. 04 Sep, 2016 2 commits
  18. 17 Jun, 2016 2 commits
  19. 02 May, 2016 1 commit
  20. 01 Mar, 2016 1 commit
  21. 26 Feb, 2016 1 commit
  22. 19 Feb, 2016 1 commit
  23. 31 Dec, 2015 1 commit
  24. 25 Aug, 2015 2 commits
  25. 21 Jan, 2015 1 commit