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

Version Path
whos_dated_who-0.1.0 vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util.rb
whos_dated_who-0.0.1 vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util.rb
thread_safe-0.3.4 lib/thread_safe/util.rb
thread_safe-0.3.4-java lib/thread_safe/util.rb
thread_safe-0.3.3-java lib/thread_safe/util.rb
thread_safe-0.3.3 lib/thread_safe/util.rb
thread_safe-0.3.2-java lib/thread_safe/util.rb
thread_safe-0.3.2 lib/thread_safe/util.rb
thread_safe-0.3.1 lib/thread_safe/util.rb
thread_safe-0.3.1-java lib/thread_safe/util.rb
thread_safe-0.2.0-java lib/thread_safe/util.rb
thread_safe-0.2.0 lib/thread_safe/util.rb