1. Feb 10, 2016
  2. Dec 04, 2015
  3. Dec 03, 2015
  4. Nov 25, 2015
  5. Nov 24, 2015
  6. Nov 15, 2015
  7. Oct 01, 2015
  8. Sep 16, 2015
  9. Sep 11, 2015
    • Ben Noordhuis's avatar
      crypto: replace rwlocks with simple mutexes · 071c860c
      Ben Noordhuis authored
      It was pointed out by Zhou Ran that the Windows XP implementation of
      uv_rwlock_rdlock() and friends may unlock the inner write mutex on a
      different thread than the one that locked it, resulting in undefined
      behavior.
      
      The only place that uses rwlocks is the crypto module.  Make that use
      normal (simple) mutexes instead.
      
      OpenSSL's critical sections are generally very short, with exclusive
      access outnumbering shared access by a factor of three or more, so
      it's not as if using rwlocks gives a decisive performance advantage.
      
      PR-URL: https://github.com/nodejs/node/pull/2723
      
      
      Reviewed-By: default avatarFedor Indutny <fedor@indutny.com>
      071c860c
  10. Aug 29, 2015
  11. Aug 28, 2015
  12. Aug 25, 2015
  13. Aug 22, 2015
  14. Aug 20, 2015