1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:57:42 +00:00

More coding style changes.

This commit is contained in:
Andreas Kling 2018-12-03 00:39:25 +01:00
parent d824442e3e
commit f6e27c2abe
39 changed files with 216 additions and 216 deletions

View file

@ -43,11 +43,11 @@ void Keyboard::emit(byte ch)
key.character = ch;
key.modifiers = m_modifiers;
if (m_client)
m_client->onKeyPress(key);
m_client->on_key_pressed(key);
m_queue.enqueue(key);
}
void Keyboard::handleIRQ()
void Keyboard::handle_irq()
{
while (IO::in8(0x64) & 1) {
byte ch = IO::in8(0x60);
@ -107,23 +107,23 @@ Keyboard::Keyboard()
while (IO::in8(I8042_STATUS ) & DATA_AVAILABLE)
IO::in8(I8042_BUFFER);
enableIRQ();
enable_irq();
}
Keyboard::~Keyboard()
{
}
bool Keyboard::hasDataAvailableForRead() const
bool Keyboard::has_data_available_for_reading() const
{
return !m_queue.isEmpty();
return !m_queue.is_empty();
}
ssize_t Keyboard::read(byte* buffer, size_t size)
{
ssize_t nread = 0;
while ((size_t)nread < size) {
if (m_queue.isEmpty())
if (m_queue.is_empty())
break;
buffer[nread++] = m_queue.dequeue().character;
}