System.h 414 B

123456789101112131415161718192021222324
  1. // Copyright (C) 2009-2015, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include "anki/util/StdTypes.h"
  7. namespace anki {
  8. /// @addtogroup util_system
  9. /// @{
  10. /// Get the number of CPU cores
  11. extern U32 getCpuCoresCount();
  12. /// Print the backtrace
  13. extern void printBacktrace();
  14. /// @}
  15. } // end namespace anki