1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       tuklib_cpucores.h
4207753Smm/// \brief      Get the number of CPU cores online
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#ifndef TUKLIB_CPUCORES_H
14207753Smm#define TUKLIB_CPUCORES_H
15207753Smm
16207753Smm#include "tuklib_common.h"
17207753SmmTUKLIB_DECLS_BEGIN
18207753Smm
19207753Smm#define tuklib_cpucores TUKLIB_SYMBOL(tuklib_cpucores)
20207753Smmextern uint32_t tuklib_cpucores(void);
21207753Smm
22207753SmmTUKLIB_DECLS_END
23207753Smm#endif
24