kern

annotate src/config.h @ 80:4db99a52863e

fixed the "endianess" of the text messages in the ATA identify info block. this is the first time I've seen wrong byteorder in ascii text, the ATA committee should be commended.
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 Dec 2011 13:35:39 +0200
parents fa65b4f45366
children
rev   line source
nuclear@33 1 #ifndef _CONFIG_H_
nuclear@33 2 #define _CONFIG_H_
nuclear@33 3
nuclear@33 4 /* frequency of generated timer ticks in hertz */
nuclear@33 5 #define TICK_FREQ_HZ 250
nuclear@33 6
nuclear@51 7 #define TIMESLICE 100
nuclear@51 8 #define TIMESLICE_TICKS (TIMESLICE * TICK_FREQ_HZ / 1000)
nuclear@51 9
nuclear@52 10 /* allow automatic user stack growth by at most 1024 pages at a time (4mb) */
nuclear@52 11 #define USTACK_MAXGROW 1024
nuclear@52 12
nuclear@54 13 /* per-process kernel stack size (2 pages) */
nuclear@54 14 #define KERN_STACK_SIZE 8192
nuclear@54 15
nuclear@33 16 #endif /* _CONFIG_H_ */