X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=examples%2Fbenchmark%2Fkernel-only_arm%2Fcfg%2Fcfg_proc.h;fp=examples%2Fbenchmark%2Fkernel-only_arm%2Fcfg%2Fcfg_proc.h;h=0000000000000000000000000000000000000000;hb=93b185b8caa91d9b3f002a62d45d3d69aa7de610;hp=82820f8710743082c835f9c749f00a551509bd68;hpb=1649c7086c522816b0b5337dabd7aacbc017bf0b;p=bertos.git diff --git a/examples/benchmark/kernel-only_arm/cfg/cfg_proc.h b/examples/benchmark/kernel-only_arm/cfg/cfg_proc.h deleted file mode 100644 index 82820f87..00000000 --- a/examples/benchmark/kernel-only_arm/cfg/cfg_proc.h +++ /dev/null @@ -1,102 +0,0 @@ -/** - * \file - * - * - * \brief Kernel configuration parameters - * - * \version $Id$ - * \author Bernie Innocenti - */ - -#ifndef CFG_PROC_H -#define CFG_PROC_H - -/** - * Enable the multithreading kernel. - * - * $WIZ$ type = "autoenabled" - */ -#define CONFIG_KERN 1 - -/** - * Kernel interrupt supervisor. WARNING: Experimental, still incomplete! - * $WIZ$ type = "boolean" - * $WIZ$ supports = "False" - */ -#define CONFIG_KERN_IRQ 0 - -/** - * Dynamic memory allocation for processes. - * - * $WIZ$ type = "boolean" - * $WIZ$ supports = "False" - */ -#define CONFIG_KERN_HEAP 0 - -/** - * Preemptive process scheduling. WARNING: Experimental, still incomplete! - * - * $WIZ$ type = "boolean" - * $WIZ$ supports = "False" - */ -#define CONFIG_KERN_PREEMPT 0 - -/** - * Priority-based scheduling policy. - * $WIZ$ type = "boolean" - */ -#define CONFIG_KERN_PRI 1 - -/** - * Time sharing quantum (a prime number prevents interference effects) [ms]. - * - * $WIZ$ type = "int" - * $WIZ$ min = 1 - */ -#define CONFIG_KERN_QUANTUM 11 - -/** - * Module logging level. - * - * $WIZ$ type = "enum" - * $WIZ$ value_list = "log_level" - */ -#define KERN_LOG_LEVEL LOG_LVL_ERR - -/** - * Module logging format. - * - * $WIZ$ type = "enum" - * $WIZ$ value_list = "log_format" - */ -#define KERN_LOG_FORMAT LOG_FMT_VERBOSE - -#endif /* CFG_PROC_H */