telnet_port = 3000; /* telnet port number */
binary_port = 3001; /* binary port number */
directory = "/home/erlends/gurba/lib"; /* base directory (MUST be absolute) */
users = 100; /* max # of users */
editors = 100; /* max # of editor sessions */
ed_tmpfile = "/home/erlends/gurba/tmp/ed"; /* proto editor tmpfile */
swap_file = "/home/erlends/gurba/tmp/swap"; /* swap file */
swap_size = 32768; /* # sectors in swap file */
cache_size = 50; /* # sectors in swap cache */
sector_size = 512; /* swap sector size */
swap_fragment = 32; /* fragment to swap out */
static_chunk = 64512; /* static memory chunk */
dynamic_chunk = 261120; /* dynamic memory chunk */
dump_file = "/gurba/dump"; /* dump file */
/* */
typechecking = 1; /* global typechecking */
include_file = "/kernel/include/std.h"; /* standard include file */
include_dirs = ({ "/include", "/kernel/include/", "~/include" }); /* directories to search */
auto_object = "/kernel/lib/auto"; /* auto inherited object */
driver_object = "/kernel/sys/driver"; /* driver object */
create = "create"; /* name of create function */
array_size = 1000; /* max array size */
objects = 5000; /* max # of objects */
call_outs = 1000; /* max # of call_outs */