diff options
author | kaashoek <kaashoek> | 2006-08-24 02:44:41 +0000 |
---|---|---|
committer | kaashoek <kaashoek> | 2006-08-24 02:44:41 +0000 |
commit | ea2909b6b5ceb54383ab23fd195ebae29cfdb7ca (patch) | |
tree | 78a7076d23319c0c38b7f62108b6d06908379c42 /Makefile | |
parent | 8b58e81077abf4e843873f16c03077e2fafce52d (diff) | |
download | xv6-labs-ea2909b6b5ceb54383ab23fd195ebae29cfdb7ca.tar.gz xv6-labs-ea2909b6b5ceb54383ab23fd195ebae29cfdb7ca.tar.bz2 xv6-labs-ea2909b6b5ceb54383ab23fd195ebae29cfdb7ca.zip |
user-level malloc (untested)
nit in sbrk
indirect block
fix dup to share fd struct
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ kernel : $(OBJS) bootother.S init vectors.S : vectors.pl perl vectors.pl > vectors.S -ULIB = ulib.o usys.o printf.o +ULIB = ulib.o usys.o printf.o umalloc.o user1 : user1.o $(ULIB) $(LD) -N -e main -Ttext 0 -o user1 user1.o $(ULIB) |