neptune/config.h
2025-10-30 22:43:59 +01:00

12 lines
263 B
C

#ifndef KERNEL_CONFIG_H
#define KERNEL_CONFIG_H
/*
* Number of CPU's For now, this is hard-coded here. It will likely be
* dynamically discovered in the future.
*/
#define NCPU 4
/* Maximum number of files open */
#define NOFILE 10
#endif // KERNEL_CONFIG_H