xv6-6.S081
xv6-6.S081 copied to clipboard
Lab of 6.S081 / Fall 2020
Results
1
xv6-6.S081 issues
Sort by
recently updated
recently updated
newest added
您好,大佬,我这里关于您的mmap lab中的sys_munmap函数有一个问题 ``` if(addr == v->start){ writeback(v, addr, length); uvmunmap(p->pagetable, addr, length / PGSIZE, 1); if(length == v->length){ // free all fileclose(v->file); if(pre == 0){ p->vma = v->next; // head...