sp1-core-executor 6.1.0

RISC-V executor for SP1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use deepsize2::DeepSizeOf;
use serde::{Deserialize, Serialize};

use crate::events::PageProtLocalEvent;

/// Mprotect precompile event.
#[derive(Clone, Debug, Default, Serialize, Deserialize, DeepSizeOf)]
pub struct MProtectEvent {
    /// Address being protected (page-aligned).
    pub addr: u64,
    /// Local page prot access.
    pub local_page_prot_access: Vec<PageProtLocalEvent>,
}