Sha256: 1d8a525afa8a3621593c4c324c54185c651a1875a6cabd7189152dd7e135cbec
Contents?: true
Size: 700 Bytes
Versions: 152
Compression:
Stored size: 700 Bytes
Contents
module ThreadSafe module Util FIXNUM_BIT_SIZE = (0.size * 8) - 2 MAX_INT = (2 ** FIXNUM_BIT_SIZE) - 1 CPU_COUNT = 16 # is there a way to determine this? autoload :AtomicReference, 'thread_safe/util/atomic_reference' autoload :Adder, 'thread_safe/util/adder' autoload :CheapLockable, 'thread_safe/util/cheap_lockable' autoload :PowerOfTwoTuple, 'thread_safe/util/power_of_two_tuple' autoload :Striped64, 'thread_safe/util/striped64' autoload :Volatile, 'thread_safe/util/volatile' autoload :VolatileTuple, 'thread_safe/util/volatile_tuple' autoload :XorShiftRandom, 'thread_safe/util/xor_shift_random' end end
Version data entries
152 entries across 144 versions & 47 rubygems