1
#pragma once
2

            
3
#if !defined(__linux__)
4
#error "Linux platform file is part of non-Linux build."
5
#endif
6

            
7
#include <cstdint>
8
#include <string>
9

            
10
namespace Envoy {
11
class OptionsImplPlatformLinux {
12
public:
13
  static uint32_t getCpuAffinityCount(unsigned int hw_threads);
14
};
15
} // namespace Envoy