1. 05 Nov, 2018 5 commits
  2. 02 Nov, 2018 2 commits
  3. 01 Nov, 2018 3 commits
    • Nils Goroll's avatar
      more 32bit fixes · eb28fe77
      Nils Goroll authored
      eb28fe77
    • Poul-Henning Kamp's avatar
      Fix for 32 bit archs · 53a5e256
      Poul-Henning Kamp authored
      53a5e256
    • Nils Goroll's avatar
      do not pass a NULL pointer from strerror() to vsnprintf via VSL · ee33662a
      Nils Goroll authored
      (at leat on solaris) strerror() itself may fail for an out-of-memory
      condition (because the localization code contains memory
      allocations). In order to handle this situation, we need to save the
      original errno because strerror() may also set errno.
      
      This issue exists in many more places all over the code, but in the
      pool_breed case we likely failed pthread_create for an out-of-memory
      condition, and in the panic handler we want to make sure that we
      trip no follow-up panic under any circumstances.
      
      In general, while fixing all strerror() calls would unnecessarily
      complicate the code, doing so should be justified for these cases.
      
      Fixes #2815
      ee33662a
  4. 31 Oct, 2018 1 commit
  5. 30 Oct, 2018 7 commits
  6. 29 Oct, 2018 4 commits
  7. 26 Oct, 2018 1 commit
  8. 25 Oct, 2018 4 commits
  9. 22 Oct, 2018 8 commits
  10. 18 Oct, 2018 3 commits
    • Nils Goroll's avatar
      remove a useless volatile · 5c60aaa9
      Nils Goroll authored
      ... introduced with 8c113ff6
      
      Here it seems the intention was to make sure that the access to the
      parameter happens uncached, but even then it would not have helped.
      5c60aaa9
    • Nils Goroll's avatar
      more double->vtim_* · 79687f13
      Nils Goroll authored
      Reviews appreciated.
      
      I will most likely continue applying these changes in smaller chunks
      because a) this kind of work is boring and b) in the hope that smaller
      chunks will get reviewed better.
      79687f13
    • Nils Goroll's avatar
      gc duplicate initialization · bc596728
      Nils Goroll authored
      we INIT_OBJ the v1l, which includes a memset(0)
      bc596728
  11. 17 Oct, 2018 2 commits