ladybird/Terminal
Andreas Kling 9dd29f9aa9 Add a PTY multiplexer (/dev/ptmx) device.
When you open /dev/ptmx, you get a file descriptor pointing to one of the
available MasterPTY's. If none are available, you get an EBUSY.

This makes it possible to open multiple (up to 4) Terminals. :^)

To support this, I also added a CharacterDevice::open() that gets control
when VFS is opening a CharacterDevice. This is useful when we want to return
a custom FileDescriptor like we do here.
2019-01-16 13:39:32 +01:00
..
.gitignore Add Terminal/.gitignore 2019-01-15 04:49:01 +01:00
main.cpp Add a PTY multiplexer (/dev/ptmx) device. 2019-01-16 13:39:32 +01:00
Makefile Start working on a graphical Terminal program. 2019-01-15 04:30:55 +01:00
Terminal.cpp Terminal: optimize repaints a bunch. 2019-01-15 10:23:15 +01:00
Terminal.h Terminal: optimize repaints a bunch. 2019-01-15 10:23:15 +01:00