Remove unused platform-specific scheduler file.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-10 00:03:24 +02:00
parent 6ea41cc620
commit 8d420c9de7
3 changed files with 0 additions and 72 deletions

View File

@ -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 \

View File

@ -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 <http://www.gnu.org/licenses/>.
x64/scheduler.cpp
CPU specific things related to the scheduler.
*******************************************************************************/
#include <sortix/kernel/platform.h>
#include <sortix/kernel/memorymanagement.h>
#include <sortix/kernel/scheduler.h>
namespace Sortix
{
namespace Scheduler
{
void InitCPU()
{
}
}
}

View File

@ -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 <http://www.gnu.org/licenses/>.
x86/scheduler.cpp
CPU specific things related to the scheduler.
*******************************************************************************/
#include <sortix/kernel/platform.h>
#include <sortix/kernel/scheduler.h>
#include <sortix/kernel/memorymanagement.h>
namespace Sortix
{
namespace Scheduler
{
}
}