Oh my god, did I include thread.cpp into kernel.cpp!?

This commit is contained in:
Jonas 'Sortie' Termansen 2011-11-07 14:36:35 +01:00
parent b27fa68c81
commit 9ba01ad3b2
3 changed files with 3 additions and 2 deletions

View File

@ -68,6 +68,7 @@ vga.o \
elf.o \
process.o \
initrd.o \
thread.o \
../libmaxsi/libmaxsi-sortix.a
JSOBJS:=$(subst .o,-js.o,$(OBJS))

View File

@ -33,7 +33,7 @@
#include "keyboard.h"
#include "multiboot.h"
#include "memorymanagement.h"
#include "thread.cpp"
#include "thread.h"
#include "process.h"
#include "scheduler.h"
#include "syscall.h"

View File

@ -2,7 +2,7 @@
#include <sys/wait.h>
#include <libmaxsi/platform.h>
#include <libmaxsi/process.h>
#include <libmaxsi/thread.cpp>
#include <libmaxsi/thread.h>
using namespace Maxsi;