Skip to content

Commit 1d075cf

Browse files
cjihrigcodebytere
authored andcommitted
src: use uv_guess_handle() to detect TTYs
This commit reverts #30829 and uses uv_guess_handle() instead of isatty(). The IBMi changes are no longer required, as of libuv 1.34.1. PR-URL: #31333 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent e79f368 commit 1d075cf

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/node.cc

+1-11
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@
9898
#include <unistd.h> // STDIN_FILENO, STDERR_FILENO
9999
#endif
100100

101-
#ifdef __PASE__
102-
#include <sys/ioctl.h> // ioctl
103-
#endif
104101
// ========== global C++ headers ==========
105102

106103
#include <cerrno>
@@ -555,14 +552,7 @@ inline void PlatformInit() {
555552
while (s.flags == -1 && errno == EINTR); // NOLINT
556553
CHECK_NE(s.flags, -1);
557554

558-
#ifdef __PASE__
559-
// On IBMi PASE isatty() always returns true for stdin, stdout and stderr.
560-
// Use ioctl() instead to identify whether it's actually a TTY.
561-
if (ioctl(fd, TXISATTY + 0x81, nullptr) == -1 && errno == ENOTTY)
562-
continue;
563-
#else
564-
if (!isatty(fd)) continue;
565-
#endif
555+
if (uv_guess_handle(fd) != UV_TTY) continue;
566556
s.isatty = true;
567557

568558
do

0 commit comments

Comments
 (0)