summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/pty.h
AgeCommit message (Collapse)Author
2021-05-06LibC: Remove 'int* aslave' parameter from forkpty()Linus Groh
Only keep track of that (and eventually close() it) internally instead. This argument is not present on other systems, so we were running into compatibility issues with ports. Also bring the implementation closer to Linux and OpenBSD by making sure to close the slave pty fd in the fork()'d child as well as _exit()'ing on login_tty() failure - it's non-POSIX, so those are our references here. :^)
2021-04-30LibC: Implement openpty(), forkpty() and login_tty()Gunnar Beutner
These are used by OpenSSH.