diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-04-18 00:21:51 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-04-18 00:21:51 +0200 |
commit | 378866d6d19d862e0f2a123e30cb8c357fd7017a (patch) | |
tree | 22c3c841b38a45fc02193259f68a02123ee2828b | |
parent | 1333b4d14e088d018a485e6b9b034449032267f4 (diff) |
vt: allow for a bit of buffering
-rw-r--r-- | sys/src/cmd/vt/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/vt/main.c b/sys/src/cmd/vt/main.c index 6bea55e9d..866a340b2 100644 --- a/sys/src/cmd/vt/main.c +++ b/sys/src/cmd/vt/main.c @@ -269,7 +269,7 @@ initialize(int argc, char **argv) if((cs = consctl()) == nil) sysfatal("consctl failed: %r"); cs->raw = rflag; - hc = chancreate(sizeof(Rune*), 0); + hc = chancreate(sizeof(Rune*), 1); if((hostfd = start_host()) >= 0) proccreate(hostreader, nil, BSIZE+1024); |