mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
17 lines
325 B
C++
17 lines
325 B
C++
#ifndef __FENNIX_KERNEL_KERNEL_CONFIG_H__
|
|
#define __FENNIX_KERNEL_KERNEL_CONFIG_H__
|
|
|
|
#include <types.h>
|
|
#include <memory.hpp>
|
|
|
|
struct KernelConfig
|
|
{
|
|
Memory::MemoryAllocatorType AllocatorType;
|
|
bool SchedulerType;
|
|
int Cores;
|
|
};
|
|
|
|
KernelConfig ParseConfig(char *Config);
|
|
|
|
#endif // !__FENNIX_KERNEL_KERNEL_CONFIG_H__
|