Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-02-11 | lab traps: finishtraps | Mole Shang | 12 | -3/+116 | |
2024-02-10 | Merge branch 'pgtbl' into traps | Mole Shang | 32 | -8/+1167 | |
Conflicts: .gitignore Makefile conf/lab.mk | |||||
2024-02-10 | lab pgtbl: finishpgtbl | Mole Shang | 12 | -8/+97 | |
2024-02-05 | lab syscall: finish | Mole Shang | 16 | -0/+325 | |
Conflicts: kernel/syscall.c kernel/syscall.h user/user.h user/usys.pl | |||||
2024-02-05 | lab util: finish | Mole Shang | 7 | -0/+292 | |
2024-02-05 | chore: add clang-format config | Mole Shang | 2 | -0/+227 | |
2023-10-02 | ignore & clean dSYM files | Sanjit Bhat | 2 | -6/+5 | |
2023-09-21 | clean all zip files, even old ones | Sanjit Bhat | 1 | -1/+1 | |
2023-09-21 | clean all zip files, even old ones | Sanjit Bhat | 1 | -1/+1 | |
2023-09-19 | update grading and zipball rule | Sanjit Bhat | 3 | -7/+24 | |
2023-09-19 | update grading and zipball rule | Sanjit Bhat | 3 | -7/+24 | |
2023-09-13 | revert answers | Sanjit Bhat | 1 | -0/+5 | |
2023-09-13 | revert answers | Sanjit Bhat | 1 | -0/+5 | |
2023-09-13 | release traps | Sanjit Bhat | 8 | -11/+1117 | |
2023-09-12 | remove answers | Sanjit Bhat | 1 | -5/+0 | |
2023-09-12 | Makefile: new submission system | Sanjit Bhat | 1 | -46/+5 | |
2023-09-08 | 3rd lab | Robert Morris | 13 | -15/+1097 | |
2022-10-18 | Made va and size page aligned in mappages | asselism | 1 | -4/+11 | |
2022-10-17 | x | Robert Morris | 1 | -1/+2 | |
2022-10-17 | oops. scheduler() inherits the interrupt status of the | Robert Morris | 1 | -4/+4 | |
most recent process to run, so it must explicitly turn them on again. It would be better if cpu->intena were really thread->intena. | |||||
2022-10-16 | scheduler()'s intr_on() is in the wrong place, reflecting | Robert Morris | 1 | -3/+4 | |
the locking scheme from long ago. | |||||
2022-10-12 | forkret first memory model | Robert Morris | 1 | -1/+4 | |
2022-10-04 | fix copyout() to refuse to write a read-only page | Robert Morris | 3 | -11/+18 | |
2022-09-18 | Remove unused PLIC_M* macros | Frans Kaashoek | 1 | -3/+0 | |
2022-09-11 | Use O_RDONLY instead of 0 | Frans Kaashoek | 4 | -4/+8 | |
2022-09-09 | handle negative arguments to sleep() a little better | Robert Morris | 1 | -0/+2 | |
2022-08-25 | Update acks | Frans Kaashoek | 1 | -17/+19 | |
61810 | |||||
2022-08-25 | Separate tests in slow and quick. The slow tests run xv6 out of | Frans Kaashoek | 1 | -251/+278 | |
memory, out of disk space, or test big directories. Support -q option to run only the quick tests, which saves about 7mins. Clean up driver by removing duplicated code. | |||||
2022-08-24 | comment the sfences | Robert Morris | 1 | -1/+9 | |
2022-08-24 | sfence before enabling paging | Robert Morris | 1 | -0/+5 | |
2022-08-24 | Merge branch 'riscv' of g.csail.mit.edu:xv6-dev into riscv | Robert Morris | 1 | -0/+5 | |
2022-08-24 | sfence before writing satp, as well as after | Robert Morris | 3 | -3/+6 | |
2022-08-24 | Help students read this C syntax | Frans Kaashoek | 1 | -0/+5 | |
2022-08-23 | Merge branch 'riscv' of g.csail.mit.edu:xv6-dev into riscv | Robert Morris | 1 | -1/+1 | |
2022-08-23 | tolerate running out of inodes | Robert Morris | 3 | -9/+48 | |
2022-08-23 | x | Frans Kaashoek | 1 | -1/+1 | |
2022-08-23 | Rename test to textwrite | Frans Kaashoek | 1 | -2/+2 | |
2022-08-23 | Linker script makes binaries bigger; use larger disk so that usertests | Frans Kaashoek | 1 | -1/+1 | |
can run. Must assumed_free in badwrite() be adjusted? | |||||
2022-08-23 | Merge branch 'riscv' into uvm-perm | Frans Kaashoek | 14 | -95/+156 | |
2022-08-23 | Use simple linker script to force data segment to be page aligned | Frans Kaashoek | 3 | -9/+43 | |
2022-08-23 | tolerate out of disk when creating . and .. in mkdir() | Robert Morris | 2 | -9/+21 | |
2022-08-23 | don't panic if out of disk space when extending a directory. | Robert Morris | 3 | -3/+39 | |
2022-08-23 | Merge branch 'riscv-killed' into riscv | Frans Kaashoek | 6 | -8/+29 | |
2022-08-22 | Add ref to this nice page about Chapter 9's regexp matcher | Frans Kaashoek | 1 | -1/+2 | |
2022-08-22 | Use pp instead of np to be more consistent | Frans Kaashoek | 1 | -12/+12 | |
2022-08-22 | Make argint() and argaddr() of type void (thanks Harry Porter) | Frans Kaashoek | 4 | -30/+27 | |
2022-08-22 | Simplify uartputc slightly (thanks Harry Porter) | Frans Kaashoek | 1 | -13/+9 | |
2022-08-22 | slightly better comments | Robert Morris | 2 | -19/+18 | |
2022-08-17 | x | Frans Kaashoek | 1 | -1/+1 | |
2022-08-17 | Use uint64 (thanks carlclone and Harry Porter) | Frans Kaashoek | 2 | -2/+2 | |