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