1. 10 Feb, 2019 1 commit
  2. 03 Feb, 2019 1 commit
    • Luca Boccassi's avatar
      Problem: DRAFT build broken on old Windows · a9a5b2bd
      Luca Boccassi authored
      Solution: define uint64_t if not available in the system headers and
      remove inclusion of inttypes.h which does not exist and is already
      conditionally included in zmq.h if required, do not use PRIx64
      a9a5b2bd
  3. 02 Feb, 2019 2 commits
  4. 12 Jan, 2019 1 commit
  5. 28 Nov, 2018 1 commit
  6. 18 Nov, 2018 3 commits
  7. 01 Nov, 2018 1 commit
  8. 15 Aug, 2018 1 commit
  9. 27 Jul, 2018 1 commit
  10. 26 May, 2018 1 commit
  11. 10 May, 2018 1 commit
  12. 23 Mar, 2018 2 commits
  13. 21 Mar, 2018 4 commits
  14. 14 Mar, 2018 1 commit
    • Pontus Sköldström's avatar
      Support application metadata through ZMQ_METADATA · dd5eec35
      Pontus Sköldström authored
      Lets the application set per-connection metadata.
      Metadata is specified as "X-key:value" and set using zmq_setsockopt, eg:
      zmq_setsockopt (s, ZMQ_METADATA, "X-key:value", 11);
      
      The peer can then obtain the metadata from a received message:
      char *data = zmq_msg_gets(msg, "X-key");
      dd5eec35
  15. 05 Mar, 2018 1 commit
    • Stefan Kaes's avatar
      Problem: enormous memory increase due to zero copy decoding · fcbd2a57
      Stefan Kaes authored
      The zero copy decoding strategy implemented for 4.2.0 can lead to a large
      increase of main memory usage in some cases (I have seen one program go up to
      40G from 10G after upgrading from 4.1.4). This commit adds a new option to
      contexts, called ZMQ_ZERO_COPY_RECV, which allows one to switch to the old
      decoding strategy.
      fcbd2a57
  16. 09 Feb, 2018 2 commits
  17. 08 Feb, 2018 1 commit
  18. 04 Feb, 2018 1 commit
  19. 03 Feb, 2018 1 commit
  20. 02 Feb, 2018 1 commit
  21. 13 Dec, 2017 1 commit
  22. 16 Nov, 2017 1 commit
  23. 25 Oct, 2017 1 commit
    • f18m's avatar
      Change ZMQ_THREAD_AFFINITY to… · 2aa0e6fd
      f18m authored
      Change ZMQ_THREAD_AFFINITY to ZMQ_THREAD_AFFINITY_CPU_ADD/ZMQ_THREAD_AFFINITY_CPU_REMOVE. Avoid prefix thread names when no prefix was set.
      2aa0e6fd
  24. 24 Oct, 2017 1 commit
  25. 17 Oct, 2017 1 commit
  26. 16 Oct, 2017 1 commit
    • f18m's avatar
      Background threads enhancements (#2778) · bfbb4ff2
      f18m authored
      * Background thread scheduling 
      
      - add ZMQ_THREAD_AFFINITY ctx option; set all thread scheduling options
      from the context of the secondary thread instead of using the main
      process thread context!
      - change ZMQ_THREAD_PRIORITY to support setting NICE of the background
      thread when using SCHED_OTHER
      bfbb4ff2
  27. 09 Oct, 2017 1 commit
  28. 19 Sep, 2017 3 commits
  29. 07 Sep, 2017 2 commits