shared_mutex fix (linux)

This commit is contained in:
Nekotekina 2017-02-24 18:48:53 +03:00
parent 8369cb2af6
commit f35babad98
3 changed files with 88 additions and 22 deletions

View file

@ -10,6 +10,7 @@ class shared_mutex final
{
c_one = 1ull << 31, // Fixed-point 1.0 value (one writer)
c_min = 0x00000001, // Fixed-point 1.0/max_readers value
c_sig = 1ull << 62,
c_max = c_one
};