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