-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcloud.dgd
32 lines (30 loc) · 1.38 KB
/
cloud.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
32
telnet_port = ([ "localhost" : 8023 ]);
/* telnet port number */
binary_port = 8080; /* binary port number */
directory = "/home/server/cloud/src";
/* base directory */
ed_tmpfile = "../state/ed"; /* proto editor tmpfile */
swap_file = "../state/swap"; /* swap file */
swap_size = 65535; /* # sectors in swap file */
sector_size = 1024; /* swap sector size */
swap_fragment = 256; /* 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; /* snapshot rebuild interval */
hotboot = ({ "../bin/dgd", /* hotboot binary */
"../cloud.dgd", /* hotboot config file */
"../state/snapshot",
"../state/snapshot.old" });
typechecking = 2; /* global typechecking */
include_file = "/include/std.h"; /* standard include file */
include_dirs = ({ "/include", "~/include", "~/api/include" });
/* include directories to search */
auto_object = "/kernel/lib/auto"; /* automatically inherited object */
driver_object = "/kernel/sys/driver"; /* driver object */
create = "_F_create"; /* low-level create function */
users = 255; /* max # of users */
editors = 10; /* max # of editor sessions */
objects = 10000; /* max # of objects */
call_outs = 10000; /* max # of call_outs */
array_size = 32767; /* max array size */