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 - { - } -}