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
/
Console.h
Age
Commit message (
Expand
)
Author
2020-05-16
Kernel: Absorb LibBareMetal back into the kernel
Andreas Kling
2020-02-09
Kernel: Apply changes to use LibBareMetal definitions
Liav A
2020-01-18
Meta: Add license header to source files
Andreas Kling
2019-11-04
Kernel: Make File's can_read/can_write take a const FileDescription&
Andreas Kling
2019-11-03
Kernel: Prevent kprintf() from asserting in Console::the() (#718)
Nicolas Van Bossuyt
2019-07-03
AK: Rename the common integer typedefs to make it obvious what they are.
Andreas Kling
2019-06-07
Kernel: Rename FileDescriptor to FileDescription.
Andreas Kling
2019-05-28
Add clang-format file
Robin Burchell
2019-04-29
Kernel: Have File virtuals take a FileDescriptor& rather than a Process&.
Andreas Kling
2019-04-03
Kernel: Move devices into Kernel/Devices/.
Andreas Kling
2019-02-25
Kernel: Make syscalls that take a buffer size use ssize_t instead of size_t.
Andreas Kling
2019-02-15
Use modern C++ attributes instead of __attribute__ voodoo.
Andreas Kling
2019-01-31
Big, possibly complete sweep of naming changes.
Andreas Kling
2019-01-28
Expose the kernel log buffer through /proc/dmesg.
Andreas Kling
2019-01-23
Move VFS sources into Kernel/.
Andreas Kling
2019-01-21
Kernel: Make /proc/PID/fds display something useful for character devices.
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-14
Start refactoring the windowing system to use an event loop.
Andreas Kling
2018-12-03
Yet more coding style fixes.
Andreas Kling
2018-12-03
More coding style changes.
Andreas Kling
2018-10-31
Add a kmalloc_eternal() for things that will never be destroyed.
Andreas Kling
2018-10-30
Start working on virtual consoles/TTYs.
Andreas Kling
2018-10-28
Add save/unsave cursor escape sequences.
Andreas Kling
2018-10-28
Add basic support for ANSI color escape sequences.
Andreas Kling
2018-10-27
Implement 'H' and 'J' escape sequences.
Andreas Kling
2018-10-26
Add a very hackish /proc/PID/stack.
Andreas Kling
2018-10-26
Add a simple /proc/mounts that enumerates the current VFS mounts.
Andreas Kling
2018-10-25
Implement a basic way for read() to block.
Andreas Kling
2018-10-23
Various things:
Andreas Kling
2018-10-21
Make Console::m_rows/m_columns const for now.
Andreas Kling
2018-10-21
Have Console::write() directly call vga_putch.
Andreas Kling
2018-10-21
Add a Console device and start refactoring screen output.
Andreas Kling