summaryrefslogtreecommitdiff
path: root/Servers/SystemServer
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-18 18:39:30 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-18 18:39:30 +0200
commit1fc2bca8562e14464c8a89067cde1dd1ccaf23aa (patch)
treefbf2d2f8f1fe1c877c74a1d2b2a9560519336193 /Servers/SystemServer
parent270adea22f3055a7fba544d7f8fef6dd7f13ef60 (diff)
downloadserenity-1fc2bca8562e14464c8a89067cde1dd1ccaf23aa.zip
SystemServer: Don't wake up every single second
Diffstat (limited to 'Servers/SystemServer')
-rw-r--r--Servers/SystemServer/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/SystemServer/main.cpp b/Servers/SystemServer/main.cpp
index 0cbc2f44d4..a70d70bbd1 100644
--- a/Servers/SystemServer/main.cpp
+++ b/Servers/SystemServer/main.cpp
@@ -111,6 +111,6 @@ int main(int, char**)
check_for_test_mode();
while (1) {
- sleep(1);
+ sleep(3600);
}
}