1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 08:07:36 +00:00

SystemServer: Don't wake up every single second

This commit is contained in:
Andreas Kling 2019-09-18 18:39:30 +02:00
parent 270adea22f
commit 1fc2bca856

View file

@ -111,6 +111,6 @@ int main(int, char**)
check_for_test_mode();
while (1) {
sleep(1);
sleep(3600);
}
}