diff options
| author | Miguel <m.i@gmx.at> | 2018-08-17 21:41:21 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-08-17 21:41:21 +0200 |
| commit | c15925a24efe14f437d8a2699500241a58fdc8f9 (patch) | |
| tree | c0db3a7d2a4f857324735df35e9cc1f0539c5f24 /kernel/config.h | |
| parent | 6fd78c2ff950310d8372ec0353553cc4a5a43e72 (diff) | |
cleanup and working on fifo pipes
Diffstat (limited to 'kernel/config.h')
| -rw-r--r-- | kernel/config.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/kernel/config.h b/kernel/config.h index 6c9e3d5..2d64db1 100644 --- a/kernel/config.h +++ b/kernel/config.h @@ -1,13 +1,16 @@ /******************************************** - * Fool OS Central Configuration File * + * F00l 0S Central Configuration File * ********************************************/ -#include "lib/logger/log.h" - #ifndef FOOLOS_CONFIG_H #define FOOLOS_CONFIG_H +#include "lib/logger/log.h" + +#define KERNEL_VERSION "FoolOS 0.3.2" +#define FIFO_MAX_RINGBUFFERS 20 + #define FOOLOS_CONSOLE_AUTOBREAK // add newline automatically at end of line #define FOOLOS_LOG_OFF // do not log anything @@ -20,5 +23,10 @@ #define LOG_BUF_SIZE 4069 #define LOG_SYSCALLS +#define BIN_INIT "/bin/init" + +#define KMALLOC_MEM_SIZE 1024*1024*8 // 8MB for in kernel-memory +#define NUMBER_SPINLOCKS 16 + #endif |
