os-k/src/kaleid/kernel/config.h

43 lines
1.3 KiB
C

//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Authors: spectral` //
// NeoX //
// //
// Desc: Default configuration file //
//----------------------------------------------------------------------------//
// XXX update the tree etc
// This file is to be copied to "config.h" and edited before compilation
// We may do a script that generates "config.h" for the user, asking about
// the different configuration choices in the terminal.
#ifndef _KALCOMM_CONFIG_H
#define _KALCOMM_CONFIG_H
//------------------------------------------//
// General configuration choices //
//------------------------------------------//
//
// Enable/disable multiprocessor support
//
#define MULTIPROCESSOR FALSE
//
// Enable/disable preemptivity
//
#define PREEMPTIVE TRUE
//
// Size of a tabulation in spaces
// Default: 4 spaces/tab
//
#define TABSIZE 4
// this file is to be progressively filled
#endif