summaryrefslogtreecommitdiff
path: root/term/main.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-08-15 20:22:59 +0000
committerThomas Bushnell <thomas@gnu.org>1996-08-15 20:22:59 +0000
commite8ac42dc5d09570b2a65b411a966880f67a792a9 (patch)
tree6c2ca7500ee157fea5a60d20b8484e49b1eef589 /term/main.c
parent6436e3dfe7702d3f4f92379e1815c161ea930418 (diff)
*** empty log message ***
Diffstat (limited to 'term/main.c')
-rw-r--r--term/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/term/main.c b/term/main.c
index d0702e83..2f8ac449 100644
--- a/term/main.c
+++ b/term/main.c
@@ -180,9 +180,9 @@ main (int argc, char **argv)
term_owner = term_group = 0;
term_mode = (bottom == &ptyio_bottom ? 0666 : 0600) | S_IFCHR;
- inputq = create_queue (256, 100, 300);
- rawq = create_queue (256, 100, 300);
- outputq = create_queue (256, 100, 300);
+ inputq = create_queue (256, QUEUE_LOWAT, QUEUE_HIWAT);
+ rawq = create_queue (256, QUEUE_LOWAT, QUEUE_HIWAT);
+ outputq = create_queue (256, QUEUE_LOWAT, QUEUE_HIWAT);
if (bottom == &ptyio_bottom)
ptyio_init ();