1. 26 Feb, 2016 1 commit
  2. 30 Sep, 2015 1 commit
  3. 22 Jul, 2015 5 commits
  4. 17 Mar, 2015 1 commit
  5. 05 Mar, 2015 1 commit
  6. 13 Feb, 2015 1 commit
  7. 10 Feb, 2015 4 commits
  8. 01 Jan, 2015 1 commit
  9. 14 Dec, 2014 1 commit
  10. 04 Dec, 2014 1 commit
  11. 25 Nov, 2014 1 commit
  12. 18 Nov, 2014 1 commit
  13. 10 Oct, 2014 1 commit
  14. 24 Aug, 2014 2 commits
  15. 07 Aug, 2014 2 commits
  16. 06 Aug, 2014 1 commit
  17. 26 Apr, 2014 1 commit
    • Max Kellermann's avatar
      DeferredMonitor: fix race condition when using GLib event loop · 0efb67b5
      Max Kellermann authored
      Turns out the lock-free code using atomics was not thread-safe.  The
      given callback could be invoked by GLib before the source_id attribute
      was assigned.  This commit changes the DeferredMonitor class to use a
      Mutex to block the event loop until source_id is assigned.  This bug
      does not exist in the 0.19 branch because it does not use the GLib
      main loop anymore.
      0efb67b5
  18. 15 Mar, 2014 1 commit
  19. 02 Mar, 2014 1 commit
  20. 18 Feb, 2014 1 commit
  21. 04 Feb, 2014 1 commit
  22. 13 Jan, 2014 1 commit
  23. 09 Jan, 2014 2 commits
  24. 07 Jan, 2014 1 commit
  25. 06 Jan, 2014 5 commits
  26. 05 Jan, 2014 1 commit
    • Max Kellermann's avatar
      event/Loop: try to avoid the WakeFD when adding DeferredMonitor · e599b864
      Max Kellermann authored
      Add a flag that indicates whether the EventLoop is currently "busy".
      As long as that flag is set, it does not need to be woken up - we can
      simply add the DeferredMonitor to the list, and it will be caught by
      EventLoop very soon.  This eliminates nearly all of the
      DeferredMonitor overhead when compared to IdleMonitor, rendering
      IdleMonitor mostly obsolete.
      e599b864