BSD 4 release
[unix-history] / usr / src / cmd / lisp / h / config.h
CommitLineData
31cef89c
BJ
1/* sccs id @(#)config.h 34.1 10/22/80 */
2
3/*
4 * this file contains parameters which each site is likely to modify
5 * to create (and describe) their own configuration.
6 * The following names will be stored in the (status features) list.
7 *
8 */
9
10#define OS "unix"
11#define MACHINE "vax"
12#define SITE "ucbvax"
13
14
15/* TTSIZ is the absolute limit, in pages,
16 * both text and data, of the
17 * size to which the lisp system may grow.
18 * If you change this, you must recompile
19 * alloc.c and data.c
20 */
21#ifdef HOLE
22#define TTSIZE 10216
23#else
24#define TTSIZE 6120
25#endif
26
27
28#ifdef VMS
29#undef TTSIZE
30#define TTSIZE 10216
31#define FREESIZE 512 * 10000
32#endif
33
34