mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 18:19:03 +00:00
Various things:
- putch syscall now directly calls Console::putChar(). - /proc/summary includes some info about kmalloc stats. - Syscall entry is guarded by a simple spinlock. - Unmap regions for crashed tasks.
This commit is contained in:
parent
c80a1f39ce
commit
ccd15e0590
Notes:
sideshowbarker
2024-07-19 18:44:35 +09:00
Author: https://github.com/
Commit: ccd15e0590
5 changed files with 82 additions and 8 deletions
|
@ -12,9 +12,9 @@ public:
|
|||
virtual ssize_t read(byte* buffer, size_t size) override;
|
||||
virtual ssize_t write(const byte* data, size_t size) override;
|
||||
|
||||
private:
|
||||
void putChar(char);
|
||||
|
||||
private:
|
||||
const byte m_rows { 25 };
|
||||
const byte m_columns { 80 };
|
||||
byte m_cursorRow { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue