kern

view src/config.h @ 52:fa65b4f45366

picking this up again, let's fix it
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 07 Aug 2011 06:42:00 +0300
parents b1e8c8251884
children 4eaecb14fe31
line source
1 #ifndef _CONFIG_H_
2 #define _CONFIG_H_
4 /* frequency of generated timer ticks in hertz */
5 #define TICK_FREQ_HZ 250
7 #define TIMESLICE 100
8 #define TIMESLICE_TICKS (TIMESLICE * TICK_FREQ_HZ / 1000)
10 /* allow automatic user stack growth by at most 1024 pages at a time (4mb) */
11 #define USTACK_MAXGROW 1024
13 #endif /* _CONFIG_H_ */