This commit is contained in:
2025-12-03 05:50:05 +01:00
parent 246a5bc3e6
commit a4bf6ab8c8
4 changed files with 13 additions and 3 deletions

View File

@@ -97,7 +97,9 @@ bool sem_wait(Vault &vault, size_t id) {
return true;
}
void exit(Vault &vault) { (void)vault; }
void exit(Vault &vault) {
vault.scheduler.exit();
}
} // namespace Skeleton
} // namespace Syscall