1. 23 Nov, 2021 3 commits
  2. 12 Nov, 2021 1 commit
    • Rosen Penev's avatar
      treewide: replace lock_guard with scoped_lock · 4e0e4c00
      Rosen Penev authored
      SonarLint reports the latter to be better:
      
      std::scoped_lock basically provides the same feature as std::lock_guard,
      but is more generic: It can lock several mutexes at the same time, with a
      deadlock prevention mechanism (see {rule:cpp:S5524}). The equivalent code
      to perform simultaneous locking with std::lock_guard is significantly more
      complex. Therefore, it is simpler to use std::scoped_lock all the time,
      even when locking only one mutex (there will be no performance impact).
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      4e0e4c00
  3. 31 Oct, 2021 1 commit
  4. 28 Oct, 2021 1 commit
  5. 14 Oct, 2021 4 commits
  6. 13 Oct, 2021 8 commits
  7. 08 Sep, 2021 1 commit
  8. 05 Aug, 2021 2 commits
  9. 25 Jun, 2021 1 commit
  10. 24 Jun, 2021 1 commit
  11. 25 May, 2021 2 commits
  12. 04 Mar, 2021 1 commit
  13. 05 Feb, 2021 1 commit
  14. 01 Jan, 2021 1 commit
  15. 01 Dec, 2020 1 commit
  16. 04 Nov, 2020 2 commits
  17. 28 Oct, 2020 3 commits
  18. 27 Oct, 2020 2 commits
  19. 14 Oct, 2020 1 commit
  20. 08 Oct, 2020 1 commit
  21. 23 Sep, 2020 1 commit
    • Max Kellermann's avatar
      LogLevel: rename DEFAULT to NOTICE · c843bce9
      Max Kellermann authored
      "DEFAULT" is a bad name - all it says is that it's the default value,
      but it doesn't say what it means.  The name NOTICE mimics the syslog
      level.
      c843bce9
  22. 17 Sep, 2020 1 commit