No description
Find a file
2006-09-06 17:10:00 +00:00
.cvsignore New formatting scripts. 2006-09-05 15:50:55 +00:00
asm.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
bio.c
bootasm.S spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
bootmain.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
bootother.S spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
buf.h
cat.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
console.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
defs.h standardize on unnamed args in prototypes 2006-09-06 17:10:00 +00:00
dev.h
dot-bochsrc
echo.c
elf.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
fcntl.h
fd.c
fd.h
fs.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
fs.h
fstests.c
fsvar.h
ide.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
init.c
ioapic.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
ioapic.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
kalloc.c nits 2006-09-04 11:52:36 +00:00
lapic.c a few nits 2006-09-04 12:41:27 +00:00
lgrind.sty
lgrindef
ls.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
main.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
Makefile nits 2006-09-06 01:25:41 +00:00
mkdir.c
mkfs.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
mmu.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
mp.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
mp.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
Notes
param.h spacing 2006-09-06 17:06:10 +00:00
picirq.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
pipe.c
printf.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
proc.c clear np->mem after freeing 2006-09-06 16:35:21 +00:00
proc.h
README nits 2006-09-04 11:52:36 +00:00
rm.c
runoff New formatting scripts. 2006-09-05 15:50:55 +00:00
runoff.list tweak 2006-09-06 16:36:54 +00:00
setjmp.S spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
sh.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
sign.pl spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
spinlock.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
spinlock.h
stat.h
string.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
syscall.c
syscall.h
trap.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
trapasm.S spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
traps.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
types.h
ulib.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
umalloc.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
user.h nits 2006-09-06 01:25:41 +00:00
user1.c
userfs.c spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
usertests.c
usys.S spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
vectors.pl spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00
x86.h spacing fixes: no tabs, 2-space indents (for rtm) 2006-09-06 17:04:06 +00:00

xv6 is a re-implementation of Dennis Ritchie's and Ken Thompson's Unix
Version 6 (v6).  xv6 loosely follows the structure and style of v6,
but is implemented for a modern x86-based multiprocessor using ANSI C.

xv6 is inspired by John Lions' Commentary on UNIX 6th Edition (Peer
to Peer Communications; ISBN: 1-57398-013-7; 1st edition (June 14,
2000)). See also http://pdos.csail.mit.edu/6.828/2006/v6.html, which
provides pointers to on-line resources for v6.

xv6 borrows code from the following sources:
    JOS (asm.h, elf.h, mmu.h, bootasm.S, ide.c, console.c, and others)
    Plan 9 (bootother.S, mp.h, mp.c, ioapic.h, lapic.c)
    FreeBSD (ioapic.c)
    NetBSD (console.c)

The following people made contributions:
    Russ Cox (context switching, locking)
    Cliff Frey (MP)
    Xiao Yu (MP)

If you spot errors or have suggestions for improvement, please send
email to Frans Kaashoek and Robert Morris
({kaashoek,rtm}@csail.mit.edu).  This version is the very first one,
so don't be surprised if there are errors or the code is unclear.