aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/tty.h
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1995-07-16 10:22:37 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1995-07-16 10:22:37 +0000
commitdd9ba30492d3a87515bc904f95841c1f87af707a (patch)
tree03f5a58719f1f331d4bf4e9708268b1cb784b17a /sys/sys/tty.h
parenta7957cb6ce33343999d6ab0df4e8aa21c76b0854 (diff)
downloadsrc-dd9ba30492d3a87515bc904f95841c1f87af707a.tar.gz
src-dd9ba30492d3a87515bc904f95841c1f87af707a.zip
Protect TTYHOG by #ifndef so it can be overridden from the config
file. Submitted by: hsu@clinet.fi (Heikki Suonsivu)
Notes
Notes: svn path=/head/; revision=9543
Diffstat (limited to 'sys/sys/tty.h')
-rw-r--r--sys/sys/tty.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/tty.h b/sys/sys/tty.h
index f6cf61104b03..b82b0b31b051 100644
--- a/sys/sys/tty.h
+++ b/sys/sys/tty.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)tty.h 8.6 (Berkeley) 1/21/94
- * $Id: tty.h,v 1.17 1995/04/11 17:53:14 ache Exp $
+ * $Id: tty.h,v 1.18 1995/04/15 20:59:28 bde Exp $
*/
#ifndef _SYS_TTY_H_
@@ -118,7 +118,9 @@ struct tty {
#define IBUFSIZ 384 /* Should be >= max value of MIN. */
#define OBUFSIZ 100
+#ifndef TTYHOG
#define TTYHOG 1024
+#endif
#ifdef KERNEL
#define TTMAXHIWAT roundup(2048, CBSIZE)