mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:08:13 +00:00
Kernel: Rename LinearAddress => VirtualAddress.
This commit is contained in:
parent
0ed89440f1
commit
e42c3b4fd7
33 changed files with 272 additions and 272 deletions
|
@ -258,9 +258,9 @@ InodeMetadata FileDescription::metadata() const
|
|||
return {};
|
||||
}
|
||||
|
||||
KResultOr<Region*> FileDescription::mmap(Process& process, LinearAddress laddr, size_t offset, size_t size, int prot)
|
||||
KResultOr<Region*> FileDescription::mmap(Process& process, VirtualAddress vaddr, size_t offset, size_t size, int prot)
|
||||
{
|
||||
return m_file->mmap(process, *this, laddr, offset, size, prot);
|
||||
return m_file->mmap(process, *this, vaddr, offset, size, prot);
|
||||
}
|
||||
|
||||
KResult FileDescription::truncate(off_t length)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue