hardware_cputhreads.c revision 292588
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file       hardware_cputhreads.c
4/// \brief      Get the number of CPU threads or cores
5//
6//  Author:     Lasse Collin
7//
8//  This file has been put into the public domain.
9//  You can do whatever you want with this file.
10//
11///////////////////////////////////////////////////////////////////////////////
12
13#include "common.h"
14
15#include "tuklib_cpucores.h"
16
17
18extern LZMA_API(uint32_t)
19lzma_cputhreads(void)
20{
21	return tuklib_cpucores();
22}
23