summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-10-11 18:38:05 +0200
committerAlexis211 <alexis211@gmail.com>2009-10-11 18:38:05 +0200
commit3be1804db57e5d1ff08f46c7b7418729da631c26 (patch)
treee91e0197b3009080647f448542ff2a16c00946cb /Source/Kernel/VTManager
parent244df8bd2c52db9d9c9b59b917206dafcd275ebe (diff)
downloadMelon-3be1804db57e5d1ff08f46c7b7418729da631c26.tar.gz
Melon-3be1804db57e5d1ff08f46c7b7418729da631c26.zip
Tasking now works with linked lists
Diffstat (limited to 'Source/Kernel/VTManager')
-rw-r--r--Source/Kernel/VTManager/VirtualTerminal-kbd.proto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/VTManager/VirtualTerminal-kbd.proto.cpp b/Source/Kernel/VTManager/VirtualTerminal-kbd.proto.cpp
index ef95615..59f66a6 100644
--- a/Source/Kernel/VTManager/VirtualTerminal-kbd.proto.cpp
+++ b/Source/Kernel/VTManager/VirtualTerminal-kbd.proto.cpp
@@ -29,7 +29,7 @@ keypress_t VirtualTerminal::getKeypress(bool show, bool block) {
}
while (m_kbdbuff.empty())
- Task::currentThread->sleep(10);
+ Task::currThread()->sleep(10);
m_kbdbuffMutex.waitLock();
keypress_t ret = m_kbdbuff[0];