summaryrefslogtreecommitdiff
path: root/user
AgeCommit message (Expand)AuthorFilesLines
2023-09-13release trapsSanjit Bhat3-0/+220
2022-10-04fix copyout() to refuse to write a read-only pageRobert Morris1-8/+10
2022-09-11Use O_RDONLY instead of 0Frans Kaashoek4-4/+8
2022-08-25Separate tests in slow and quick. The slow tests run xv6 out ofFrans Kaashoek1-251/+278
2022-08-24sfence before writing satp, as well as afterRobert Morris1-2/+3
2022-08-23tolerate running out of inodesRobert Morris1-5/+40
2022-08-23Rename test to textwriteFrans Kaashoek1-2/+2
2022-08-23Merge branch 'riscv' into uvm-permFrans Kaashoek3-2/+38
2022-08-23Use simple linker script to force data segment to be page alignedFrans Kaashoek1-0/+36
2022-08-23tolerate out of disk when creating . and .. in mkdir()Robert Morris1-0/+5
2022-08-23don't panic if out of disk space when extending a directory.Robert Morris1-0/+30
2022-08-22Add ref to this nice page about Chapter 9's regexp matcherFrans Kaashoek1-1/+2
2022-08-17xFrans Kaashoek1-1/+1
2022-08-15Compile user binary to map text without W and data without XFrans Kaashoek1-3/+28
2022-08-15Run tests in the order in which they appear in the fileFrans Kaashoek1-39/+41
2022-08-12Delete rtcdate, which is a left-over from an old lab (thanks Harry Porter)Frans Kaashoek1-1/+0
2022-08-10xRobert Morris1-1/+1
2022-08-10have sh print prompt with write, not printf, to makeRobert Morris1-1/+1
2022-08-10avoid user-level segfault if a process doesn't call exit()Robert Morris1-0/+11
2022-08-10tolerate running out of disk blocksRobert Morris1-1/+45
2022-08-09[user/ls]: List specific device fileJohn Jolly1-0/+1
2022-08-02Mark runcmd with attribute noreturn, since it doesn't returnFrans Kaashoek1-0/+1
2021-09-01Delete unused code (Jude Rich <[email protected]>)Frans Kaashoek1-8/+0
2021-08-31fix a invalid printf format stringflespark1-1/+1
2021-08-31fix typos in user/usertest.c & kernel/log.cFIXED-TERM Chen Ian (BT-CO/QMM5)1-2/+2
2021-08-06check that there's no panic if user process tries to write >= MAXVARobert Morris1-0/+25
2021-07-02sync usertestsRobert Morris1-0/+11
2021-07-02keep usertests.c in sync with riscv-sol-2020Robert Morris1-0/+27
2020-11-19suppress an incorrect error message in grindRobert Morris1-2/+3
2020-11-05xFrans Kaashoek1-1/+1
2020-11-05kill/status testFrans Kaashoek1-0/+31
2020-10-05avoid deadlock by disk intr acking interrupt first, then processing ringRobert Morris1-4/+3
2020-10-05often causes deadlock after a few minutesRobert Morris1-2/+58
2020-10-03Add s to many printf statements that expect it (thanks Cece Chu)Frans Kaashoek1-21/+19
2020-10-03When either_copyin/out fails, return an error from write/readFrans Kaashoek1-0/+48
2020-10-03better grind error messagesRobert Morris1-19/+19
2020-08-28move panicked check to uart.cRobert Morris1-2/+18
2020-08-28Remove obselete ifdef that shouldn't have been there everFrans Kaashoek1-4/+0
2020-08-28fix usertests to pass all the riscv-sol-fall20 solutions.Robert Morris1-22/+97
2020-08-21touch sbrk()-allocated memory to make sure it existsRobert Morris1-2/+14
2020-08-21usertest for exec() out of memory recoveryRobert Morris1-0/+37
2020-08-21Use the major number defined in file.h. The minor number is ignored;Frans Kaashoek1-1/+5
2020-08-17xRobert Morris2-3/+15
2020-08-17handle another out-of-memory in fork(). the policy here is not consistent,Robert Morris1-2/+6
2020-08-10test string system call arguments that cross over the end of the last page.Robert Morris1-0/+53
2020-08-10test copyinstr()'s handling of the terminating nullRobert Morris1-2/+64
2020-08-10streamline copyin/copyout code in usertestsRobert Morris1-74/+83
2020-08-10test pointer checking in copyin, copyout, copyinstrRobert Morris1-0/+92
2020-08-10modify each page in usertests countfree()Robert Morris1-1/+4
2020-08-10make "echo hello > x" truncate file x.Robert Morris2-1/+139