SystemServer: Don't wake up every single second

This commit is contained in:
Andreas Kling 2019-09-18 18:39:30 +02:00
commit 1fc2bca856
Notes: sideshowbarker 2024-07-19 12:03:17 +09:00

View file

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