diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-02-10 21:20:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-02-10 21:20:18 +0000 |
commit | 2d7b4c18f6bc1dc66d2fd621a2b97176ccfd6d76 (patch) | |
tree | 162d2b79c6056c1635bc9fb42a11b8100c122000 /sys | |
parent | 10165e3322377187761bfdf288373345a87ce1a7 (diff) |
Decrease the initial number of ptys from 64 to 16. If the systems
needs more it will allocate them on demand. OK deraadt@ beck@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/GENERIC | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/GENERIC b/sys/conf/GENERIC index 32ced44b695..f6973aaceb0 100644 --- a/sys/conf/GENERIC +++ b/sys/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.101 2004/02/10 01:30:13 millert Exp $ +# $OpenBSD: GENERIC,v 1.102 2004/02/10 21:20:17 millert Exp $ # # Machine-independent option; used by all architectures for their # GENERIC kernel @@ -92,7 +92,7 @@ pseudo-device gre 1 # GRE encapsulation interface #pseudo-device strip 1 # Starmode Radio IP interface pseudo-device carp 2 # CARP protocol support -pseudo-device pty 64 # initial number of pseudo-terminals +pseudo-device pty 16 # initial number of pseudo-terminals pseudo-device tb 1 # tablet line discipline pseudo-device vnd 4 # paging to files pseudo-device ccd 4 # concatenated disk devices |