index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
MasterPTY.cpp
Age
Commit message (
Expand
)
Author
2019-02-25
Kernel: Make syscalls that take a buffer size use ssize_t instead of size_t.
Andreas Kling
2019-02-20
Support resizing the Terminal app.
Andreas Kling
2019-02-05
Kernel: Writing to a slave PTY should yield EIO if the master is closed.
Andreas Kling
2019-02-05
Kernel: Closing a MasterPTY should generate a TTY hangup.
Andreas Kling
2019-02-05
Kernel: Reading from a slave PTY should give EOF if master PTY is closed.
Andreas Kling
2019-01-31
Add uid and gid to CharacterDevices.
Andreas Kling
2019-01-30
Let the slave PTY keep the master PTY alive.
Andreas Kling
2019-01-30
Deallocate PTY's when they close.
Andreas Kling
2019-01-30
Add a String::format() and use that in place of ksprintf() in the Kernel.
Andreas Kling
2019-01-30
Add a /dev/pts filesystem and make PTY allocation dynamic.
Andreas Kling
2019-01-25
PTY: Disallow infinite writing to slaves.
Andreas Kling
2019-01-24
TTY: MasterPTY's are always writable when open.
Andreas Kling
2019-01-16
Let each MasterPTY create its slave.
Andreas Kling
2019-01-16
Pass the process to CharacterDevice::read/write.
Andreas Kling
2019-01-16
Rename CharacterDevice::has_data_available_for_reading() -> can_read().
Andreas Kling
2019-01-15
Allow character devices to block write attempts until there is more space.
Andreas Kling
2019-01-15
Add basic PTY support.
Andreas Kling