Sha256: 407f24c4bb47def92026c7220d02b1b96e0733774f04563b55d6c9b5c3bec91b
Contents?: true
Size: 699 Bytes
Versions: 10
Compression:
Stored size: 699 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
10 entries across 10 versions & 3 rubygems