mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 20:36:31 +00:00
将 io 移动至 vfs 目录,并修正引用路径 (#339)
* 将 io 移动至 vfs 目录,并修正引用路径 * fix bug in makefile
This commit is contained in:
@ -10,7 +10,7 @@ use elf::{endian::AnyEndian, file::FileHeader, segment::ProgramHeader};
|
||||
use crate::{
|
||||
arch::MMArch,
|
||||
current_pcb,
|
||||
io::SeekFrom,
|
||||
filesystem::vfs::io::SeekFrom,
|
||||
kerror,
|
||||
libs::align::page_align_up,
|
||||
mm::{
|
||||
|
@ -4,7 +4,7 @@ use core::mem::size_of;
|
||||
|
||||
use alloc::vec::Vec;
|
||||
|
||||
use crate::{io::SeekFrom, syscall::SystemError};
|
||||
use crate::{filesystem::vfs::io::SeekFrom, syscall::SystemError};
|
||||
|
||||
/// @brief 本模块用于为数组提供游标的功能,以简化其操作。
|
||||
#[derive(Debug)]
|
||||
|
Reference in New Issue
Block a user