1. 27 Jan, 2020 1 commit
  2. 21 May, 2019 1 commit
  3. 17 Feb, 2019 4 commits
  4. 27 May, 2018 1 commit
  5. 18 May, 2018 1 commit
  6. 13 Feb, 2018 1 commit
  7. 12 Feb, 2018 1 commit
    • Luca Boccassi's avatar
      Problem: regression with "select" on *nix (#2940) · d0e01b4b
      Luca Boccassi authored
      * Problem: build failure with select as polling mechanism
      
      Solution: cast mailbox_handle argument to (poller_t::handle_t) like in
      the reaper thread class.
      
      * Problem: build failure due to INT_MAX use without include
      
      Solution: include limits and climits in src/select.cpp where INT_MAX is
      used
      
      * Problem: build failure due to unused variable in select.cpp
      
      Solution: move the declaration of int rc inside the ifdef block where
      it is actually used
      
      * Problem: reference to wrong variable in select.cpp breaks build
      
      Solution: fix it
      
      * Problem: family_entry_t constructor has no body, build fails on *nix
      
      Solution: add empty inline function in the struct
      
      * Problem: no test coverage for poll and select
      
      Solution: add Travis jobs for them on Linux
      
      * Problem: Travis jobs cannot run in container infra
      
      Solution: set sudo: false as it is not required anymore
      d0e01b4b
  8. 02 Feb, 2018 1 commit
  9. 31 Jan, 2018 1 commit
  10. 14 May, 2016 1 commit
  11. 18 Feb, 2016 1 commit
  12. 28 Jan, 2016 1 commit
  13. 21 Aug, 2015 1 commit
  14. 16 Aug, 2015 1 commit
  15. 02 Jun, 2015 1 commit
  16. 22 Jan, 2015 1 commit
  17. 02 Jul, 2014 1 commit
  18. 02 Jan, 2014 1 commit
  19. 12 Mar, 2013 1 commit
    • Pieter Hintjens's avatar
      Removed corporate advertisements from source file headers · f0f16505
      Pieter Hintjens authored
      Copyrights had become ads for Sustrik's corporate sponsors, going against the original
      agreement to share copyrights with the community (that agreement was: one line stating
      iMatix copyright + one reference to AUTHORS file). The proliferation of corporate ads
      is also unfair to the many individual authors. I've removed ALL corporate title from
      the source files so the copyright statements can now be centralized in AUTHORS and
      source files can be properly updated on an annual basis.
      f0f16505
  20. 27 Aug, 2012 1 commit
    • Arthur O'Dwyer's avatar
      Silence all "unused parameter" warnings from Clang. · 3b984d40
      Arthur O'Dwyer authored
      Compiling without warnings is a good goal, because it makes
      new warnings (which probably indicate bugs) stand out rather
      than getting lost in the spam.
      
      My fixes fall into two categories:
      
          - Adding (void) casts of unused parameters, where their
            unusedness seems like a TODO (or in some cases a bug?).
      
          - Removing parameter names altogether, where the function
            is clearly a stub that will never use its parameters.
      
      Should be no change in behavior.
      3b984d40
  21. 06 Jul, 2012 1 commit
  22. 15 Feb, 2012 1 commit
  23. 10 Feb, 2012 1 commit
  24. 01 Nov, 2011 1 commit
  25. 31 Oct, 2011 1 commit
  26. 17 Jun, 2011 1 commit
  27. 21 Apr, 2011 1 commit
  28. 02 Mar, 2011 1 commit
  29. 22 Feb, 2011 1 commit
  30. 09 Feb, 2011 1 commit
  31. 05 Nov, 2010 2 commits
  32. 30 Oct, 2010 1 commit
  33. 26 Sep, 2010 1 commit
  34. 08 Sep, 2010 1 commit
  35. 25 Aug, 2010 1 commit
    • Martin Sustrik's avatar
      WIP: Socket migration between threads, new zmq_close() semantics · 05d90849
      Martin Sustrik authored
      Sockets may now be migrated between OS threads; sockets may not be used by
      more than one thread at any time. To migrate a socket to another thread the
      caller must ensure that a full memory barrier is called before using the
      socket from the target thread.
      
      The new zmq_close() semantics implement the behaviour discussed at:
      
      http://lists.zeromq.org/pipermail/zeromq-dev/2010-July/004244.html
      
      Specifically, zmq_close() is now deterministic and while it still returns
      immediately, it does not discard any data that may still be queued for
      sending. Further, zmq_term() will now block until all outstanding data has
      been sent.
      
      TODO: Many bugs have been introduced, needs testing. Further, SO_LINGER or
      an equivalent mechanism (possibly a configurable timeout to zmq_term())
      needs to be implemented.
      05d90849
  36. 05 May, 2010 1 commit