You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
291 B
C

3 years ago
#ifndef H_KERNEL
#define H_KERNEL
// scheduler settings
#define TIME_SLICE_LEN 10 // number of cpu time ticks per slice
3 years ago
// set size of allocated stack for user processes
#define USER_STACK_SIZE (1 << 12)
3 years ago
// init function
extern __attribute__((__noreturn__)) void init();
#endif