Prepare more timer syscalls

This commit is contained in:
momo5502
2025-06-01 14:02:36 +02:00
parent 009961620b
commit aa763c8392
4 changed files with 14 additions and 0 deletions

View File

@@ -58,6 +58,10 @@ namespace
return !e || e->try_lock(current_thread_id);
}
case handle_types::timer: {
return true; // TODO
}
case handle_types::semaphore: {
auto* s = c.semaphores.get(h);
if (s)