# Set timer interval to generate a clock interrupt every 200 milliseconds.
# The default timer interval is 20000, or 20 milliseconds.
Timer interval:     200000

# When no thread can execute, the process is put to sleep for 220 milliseconds.
# The default idle interval is 20 milliseconds.
Idle interval:     220000

# Don't let a thread execute for more than 5 timer intervals before
# checking whether it should be rescheduled.  The default quantum interval
# is 2
#Sched quantum:     5

# After every quantum expiration, the thread's priority is decremented.  The
# default sched policy is SCHED_FIFO_C
#Sched policy:      SCHED_PRIORITY_DECAY_C      

# Cause all new threads to start with an initial priority of 18.  The default
# is 16.
#Thread priority:   18

# All new threads start with a stack size of 4096 bytes.  The default is 8192.
#Stack size:        4096
