forked from dworkin/kernellib
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkernel.dgd
31 lines (28 loc) · 1.31 KB
/
kernel.dgd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* sample config file for the kernel library
*/
telnet_port = 6047; /* telnet port number */
binary_port = 6048; /* binary port number */
directory = "/Users/christophera/projects/github/ChatTheatre/kernellib";
/* base directory (MUST be absolute) */
users = 40; /* max # of users */
editors = 40; /* max # of editor sessions */
ed_tmpfile = "../state/ed"; /* proto editor tmpfile */
swap_file = "../state/swap"; /* swap file */
swap_size = 1024; /* # 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 = "../state/snapshot"; /* snapshot file */
dump_interval = 3600; /* dump interval in seconds */
typechecking = 2; /* highest level of typechecking */
include_file = "/include/std.h"; /* standard include file */
include_dirs = ({ "/include", "~/include" }); /* directories to search */
auto_object = "/kernel/lib/auto"; /* auto inherited object */
driver_object = "/kernel/sys/driver"; /* driver object */
create = "_F_create"; /* name of create function */
array_size = 1000; /* max array size */
objects = 500; /* max # of objects */
call_outs = 100; /* max # of call_outs */