From 8d420c9de772a96b061ea0fbdcaad99a92a1f98b Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 10 Jun 2013 00:03:24 +0200 Subject: [PATCH] Remove unused platform-specific scheduler file. --- sortix/Makefile | 1 - sortix/x64/scheduler.cpp | 37 ------------------------------------- sortix/x86/scheduler.cpp | 34 ---------------------------------- 3 files changed, 72 deletions(-) delete mode 100644 sortix/x64/scheduler.cpp delete mode 100644 sortix/x86/scheduler.cpp diff --git a/sortix/Makefile b/sortix/Makefile index 329e27f6..2b7bfcdc 100644 --- a/sortix/Makefile +++ b/sortix/Makefile @@ -52,7 +52,6 @@ ifdef X86FAMILY x86-family/idt.o \ $(CPU)/syscall.o \ $(CPU)/thread.o \ - $(CPU)/scheduler.o \ $(CPU)/process.o \ x86-family/cmos.o \ x86-family/time.o \ diff --git a/sortix/x64/scheduler.cpp b/sortix/x64/scheduler.cpp deleted file mode 100644 index 817e5dba..00000000 --- a/sortix/x64/scheduler.cpp +++ /dev/null @@ -1,37 +0,0 @@ -/******************************************************************************* - - Copyright(C) Jonas 'Sortie' Termansen 2011. - - This file is part of Sortix. - - Sortix 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. - - Sortix 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 - Sortix. If not, see . - - x64/scheduler.cpp - CPU specific things related to the scheduler. - -*******************************************************************************/ - -#include -#include -#include - -namespace Sortix -{ - namespace Scheduler - { - void InitCPU() - { - } - } -} diff --git a/sortix/x86/scheduler.cpp b/sortix/x86/scheduler.cpp deleted file mode 100644 index f7d39e4e..00000000 --- a/sortix/x86/scheduler.cpp +++ /dev/null @@ -1,34 +0,0 @@ -/******************************************************************************* - - Copyright(C) Jonas 'Sortie' Termansen 2011. - - This file is part of Sortix. - - Sortix 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. - - Sortix 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 - Sortix. If not, see . - - x86/scheduler.cpp - CPU specific things related to the scheduler. - -*******************************************************************************/ - -#include -#include -#include - -namespace Sortix -{ - namespace Scheduler - { - } -}