seminix 0.1.61

seminix 内核标准库
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(clippy::unused_self)]

use crate::space::{addr::Uaddr, mm::tlb::MmuGather};

#[inline(always)]
pub(super) fn arch_local_flush_tlb_all() {
    unreachable!()
}

impl MmuGather<'_> {
    pub(super) fn arch_tlb_flush(&self) {}

    pub(super) fn arch_pte_free_tlb(&mut self, _: Uaddr) {}

    pub(super) fn arch_pmd_free_tlb(&mut self, _: Uaddr) {}

    pub(super) fn arch_pud_free_tlb(&mut self, _: Uaddr) {}
}