Removed unused code in proc.c. New message passing code with pointer pointers

is now in use. Rewrote ready() and unready() fuctions.
This commit is contained in:
Jorrit Herder
2005-06-20 11:26:48 +00:00
parent c9c6983cc1
commit 403580e95b
3 changed files with 36 additions and 147 deletions

View File

@@ -14,21 +14,19 @@ g = $n/gen
CC = exec cc
CPP = $l/cpp
LD = $(CC) -.o
CFLAGS = -I$i
CFLAGS = -I$i
LDFLAGS = -i
LIBS = -lsys -lutils -ltimers
HEAD = mpx.o
OBJS = start.o protect.o klibc.o klib.o table.o main.o proc.o \
i8259.o exception.o system.o clock.o misc.o \
i8259.o exception.o system.o clock.o misc.o
SYS = system/system.a
LIBS = -ltimers
# What to make.
kernel build: $(HEAD) $(OBJS) $(SYS)
$(LD) $(LDFLAGS) -o kernel $(HEAD) $(OBJS) $(SYS) $(CLOCK) $(LIBS)
$(LD) $(CFLAGS) $(LDFLAGS) -o kernel $(HEAD) $(OBJS) $(SYS) $(LIBS)
install -S 0 kernel
$(SYS):