From e230854ee977b0114b7b2f995f0f712d5d273c90 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sat, 14 Apr 2012 13:59:22 +0200 Subject: [PATCH] Removed the idle program. --- utils/Makefile | 1 - utils/idle.cpp | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 utils/idle.cpp diff --git a/utils/Makefile b/utils/Makefile index 6ab32fd1..d7406f58 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -21,7 +21,6 @@ memstat \ chvideomode \ uname \ kernelinfo \ -idle \ editor \ kill \ column \ diff --git a/utils/idle.cpp b/utils/idle.cpp deleted file mode 100644 index 76dec3b0..00000000 --- a/utils/idle.cpp +++ /dev/null @@ -1,28 +0,0 @@ -/******************************************************************************* - - COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. - - This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the Free - Software Foundation, either version 3 of the License, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - more details. - - You should have received a copy of the GNU General Public License along with - this program. If not, see . - - idle.cpp - This is the system idle process run when the kernel has nothing else to do. - -*******************************************************************************/ - -int main(int argc, char* argv[]) -{ - // It is crucial that this process never terminates and always is runnable. - while(true); - return 0; -}