Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Moving to a default of 64 PTYs.



details:   https://anonhg.NetBSD.org/src/rev/b0834aea5486
branches:  trunk
changeset: 495417:b0834aea5486
user:      mason <mason%NetBSD.org@localhost>
date:      Thu Jul 27 17:32:11 2000 +0000

description:
Moving to a default of 64 PTYs.

diffstat:

 sys/kern/tty_pty.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 47599750ac1d -r b0834aea5486 sys/kern/tty_pty.c
--- a/sys/kern/tty_pty.c        Thu Jul 27 17:29:05 2000 +0000
+++ b/sys/kern/tty_pty.c        Thu Jul 27 17:32:11 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tty_pty.c,v 1.44 2000/07/14 12:10:58 fvdl Exp $        */
+/*     $NetBSD: tty_pty.c,v 1.45 2000/07/27 17:32:11 mason Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -62,7 +62,7 @@
 
 #if NPTY == 1
 #undef NPTY
-#define        NPTY    32              /* crude XXX */
+#define        NPTY    64              /* crude XXX */
 #endif
 
 /* Macros to clear/set/test flags. */
@@ -104,7 +104,7 @@
        int n;
 {
 #ifdef notyet
-#define        DEFAULT_NPTY    32
+#define        DEFAULT_NPTY    64
 
        /* maybe should allow 0 => none? */
        if (n <= 1)



Home | Main Index | Thread Index | Old Index