1. 05 Feb, 2019 2 commits
  2. 04 Feb, 2019 2 commits
  3. 03 Feb, 2019 1 commit
    • Luca Boccassi's avatar
      Problem: tipc disconnect does not work anymore · 0411bc15
      Luca Boccassi authored
      Solution: change back the indentifier endpoint to the one passed by the
      user rather than the resolved one, otherwise when the user passes the
      same string to the disconnect call they do not match anymore
      0411bc15
  4. 02 Feb, 2019 9 commits
  5. 01 Feb, 2019 25 commits
  6. 19 Jan, 2019 1 commit
    • Luca Boccassi's avatar
      Problem: atomic intrinsics unreliable on PPC64 and RISC-V · bfb4a868
      Luca Boccassi authored
      Solution: prefer CXX11 atomics if they are available to compiler
      intrinsics.
      test_hwm_pubsub fails 50% of the times on PPC64 and RISC-V with an
      apparent memory corruption of messages sent by the application thread
      to the I/O thread when using compiler intrinsics.
      Switching to CXX11 atomics makes the test reliable again. The
      standard API should be preferred anyway, if available.
      bfb4a868