neptune/config.h
2025-09-02 03:27:43 +02:00

11 lines
262 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