forked from sirdude/gurbalib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmud.dgd.examp
38 lines (30 loc) · 1.34 KB
/
mud.dgd.examp
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
33
34
35
36
37
/* base directory (MUST be absolute) */
directory = "/gurbalib/lib/";
users = 40; /* max # of users */
editors = 40; /* max # of editor sessions */
ports = 16; /* max # of open ports
(for network extensions) */
telnet_port = 4000; /* telnet port number */
binary_port = 4001;
ed_tmpfile = "../tmp/ed"; /* proto editor tmpfile */
swap_file = "../tmp/swap"; /* swap file */
swap_size = 2048; /* # 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 = "../dump"; /* dump file */
dump_interval = 3600;
typechecking = 2; /* highest level of typechecking */
include_file = "/kernel/include/std.h"; /* standard include file */
/* directories to search */
include_dirs = ({ "/kernel/include", "/std/include", "~/include" });
auto_object = "/kernel/lib/auto"; /* auto inherited object */
driver_object = "/kernel/sys/driver"; /* driver object */
create = "_F_create"; /* name of create function */
array_size = 4000; /* max array size */
objects = 500; /* max # of objects */
call_outs = 200; /* max # of call_outs */
/* Example of how to load a module, the extension regexp */
/* modules = ({ "kfun_regexp" }); */