class Concurrent::Utility::ProcessorCounter

def initialize

def initialize
  @processor_count          = Delay.new { compute_processor_count }
  @physical_processor_count = Delay.new { compute_physical_processor_count }
  @cpu_quota                = Delay.new { compute_cpu_quota }
  @cpu_shares               = Delay.new { compute_cpu_shares }
end