2017-07-12 14:02:10 +00:00
|
|
|
#pragma once
|
|
|
|
#include <nx/IKernelCapabilityHandler.h>
|
|
|
|
#include <nx/ThreadInfoEntry.h>
|
|
|
|
|
|
|
|
namespace nx
|
|
|
|
{
|
|
|
|
class ThreadInfoHandler :
|
|
|
|
public IKernelCapabilityHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ThreadInfoHandler();
|
|
|
|
|
2018-06-24 15:01:16 +00:00
|
|
|
void operator=(const ThreadInfoHandler& other);
|
2017-07-12 14:02:10 +00:00
|
|
|
bool operator==(const ThreadInfoHandler& other) const;
|
|
|
|
bool operator!=(const ThreadInfoHandler& other) const;
|
|
|
|
|
|
|
|
// kernel capabilty list in/out
|
2018-06-29 04:24:39 +00:00
|
|
|
void importKernelCapabilityList(const fnd::List<KernelCapabilityEntry>& caps);
|
|
|
|
void exportKernelCapabilityList(fnd::List<KernelCapabilityEntry>& caps) const;
|
2017-07-12 14:02:10 +00:00
|
|
|
void clear();
|
|
|
|
bool isSet() const;
|
|
|
|
|
|
|
|
// variables
|
2018-03-22 05:26:22 +00:00
|
|
|
uint8_t getMinPriority() const;
|
|
|
|
void setMinPriority(uint8_t priority);
|
|
|
|
uint8_t getMaxPriority() const;
|
|
|
|
void setMaxPriority(uint8_t priority);
|
|
|
|
uint8_t getMinCpuId() const;
|
|
|
|
void setMinCpuId(uint8_t core_num);
|
|
|
|
uint8_t getMaxCpuId() const;
|
|
|
|
void setMaxCpuId(uint8_t core_num);
|
2017-07-12 14:02:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const std::string kModuleName = "THREAD_INFO_HANDLER";
|
|
|
|
static const size_t kMaxKernelCapNum = 1;
|
|
|
|
|
|
|
|
bool mIsSet;
|
|
|
|
ThreadInfoEntry mEntry;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|