We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e79f368 commit 1d075cfCopy full SHA for 1d075cf
src/node.cc
@@ -98,9 +98,6 @@
98
#include <unistd.h> // STDIN_FILENO, STDERR_FILENO
99
#endif
100
101
-#ifdef __PASE__
102
-#include <sys/ioctl.h> // ioctl
103
-#endif
104
// ========== global C++ headers ==========
105
106
#include <cerrno>
@@ -555,14 +552,7 @@ inline void PlatformInit() {
555
552
while (s.flags == -1 && errno == EINTR); // NOLINT
556
553
CHECK_NE(s.flags, -1);
557
554
558
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
+ if (uv_guess_handle(fd) != UV_TTY) continue;
566
s.isatty = true;
567
568
do
0 commit comments