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