summaryrefslogtreecommitdiff
path: root/src/tty_wrap.cc
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-04-28 21:33:46 +0200
committerAnna Henningsen <anna@addaleax.net>2018-05-04 00:57:38 +0200
commit5512fff623658bffffb5ef692c57224802545664 (patch)
treeb47b8d44b873e4ccc82d14a2f4fc45918219e48d /src/tty_wrap.cc
parent4740e5dd8a8ced108f40dbcf8375c6fe62ca10cf (diff)
downloadandroid-node-v8-5512fff623658bffffb5ef692c57224802545664.tar.gz
android-node-v8-5512fff623658bffffb5ef692c57224802545664.tar.bz2
android-node-v8-5512fff623658bffffb5ef692c57224802545664.zip
src: remove `kFlagNoShutdown` flag
This was originally introduced in 3446ff417ba1e, in order to fix a hard crash. However, since the libuv 1.18.0 update, that hard crash is gone, and since f2b9805f85d3f we do not throw an error in JS land anymore either, rendering the flag unnecessary. Also, the original test that checked this condition was added to `test/parallel/`. Since that typically runs without a TTY stdin, a duplicate test is being added to the pseudo-tty test suite in this commit. Refs: https://github.com/nodejs/node/commit/3446ff417ba1e11d35d1661b8788eac5af029360 Refs: https://github.com/nodejs/node/commit/f2b9805f85d3ff770892b37944a0890e0e60ca78 Refs: https://github.com/libuv/libuv/commit/0e2814179c9903423d058b095e84f48fcfb8f3d1 PR-URL: https://github.com/nodejs/node/pull/20388 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'src/tty_wrap.cc')
-rw-r--r--src/tty_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index 9977738afc..c5abc6bf9b 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -61,7 +61,7 @@ void TTYWrap::Initialize(Local<Object> target,
env->SetProtoMethod(t, "ref", HandleWrap::Ref);
env->SetProtoMethod(t, "hasRef", HandleWrap::HasRef);
- LibuvStreamWrap::AddMethods(env, t, StreamBase::kFlagNoShutdown);
+ LibuvStreamWrap::AddMethods(env, t);
env->SetProtoMethod(t, "getWindowSize", TTYWrap::GetWindowSize);
env->SetProtoMethod(t, "setRawMode", SetRawMode);