We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e000dc4 commit 52afbdcCopy full SHA for 52afbdc
1 file changed
src/unix/pty.cc
@@ -127,9 +127,8 @@ pty_close_inherited_fds() {
127
#endif
128
129
int fd;
130
- /* Set the CLOEXEC flag on all open descriptors. Unconditionally try the
131
- * first 16 file descriptors. After that, bail out after the first error.
132
- */
+ // Set the CLOEXEC flag on all open descriptors. Unconditionally try the first
+ // 16 file descriptors. After that, bail out after the first error.
133
for (fd = 3; ; fd++)
134
if (SetCloseOnExec(fd) && fd > 15)
135
break;
0 commit comments