1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:27:35 +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:
Andreas Kling 2018-10-23 15:19:02 +02:00
parent c80a1f39ce
commit ccd15e0590
5 changed files with 82 additions and 8 deletions

View file

@ -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 };