chyyuu / os_kernel_lab

OS kernel labs based on Rust/C Lang & RISC-V 64/X86-32
https://rcore-os.github.io/rCore-Tutorial-Book-v3/index.html
GNU General Public License v3.0
3.96k stars 1.92k forks source link

Correct the function name of "dup_fs" to "dup_files" to match its declaration. #71

Closed libinyl closed 4 years ago

libinyl commented 4 years ago

在 labcodes_answer/lab8_result/kern/fs/fs.h 中 声明函数是dup_files, 在 fc.c 中的实现名却是dup_fs,在 proc.c 中也是按dup_fs调用的。 这里统一改为dup_files。 image