1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 07:55:07 +00:00

Clean up some uninteresting log spam.

This commit is contained in:
Andreas Kling 2019-02-06 11:32:23 +01:00
parent 39c3b117c9
commit 353b191a49
8 changed files with 6 additions and 16 deletions

View file

@ -26,7 +26,6 @@ static void make_shell(int ptm_fd)
int rc = 0;
close(ptm_fd);
int pts_fd = open(tty_name, O_RDWR);
dbgprintf("*** In child (%d), opening slave pty %s, pts_fd=%d\n", getpid(), tty_name, pts_fd);
rc = ioctl(0, TIOCNOTTY);
if (rc < 0) {
perror("ioctl(TIOCNOTTY)");
@ -50,8 +49,6 @@ static void make_shell(int ptm_fd)
exit(1);
}
ASSERT_NOT_REACHED();
} else {
dbgprintf("*** In parent, child is %d\n", pid);
}
}