Stub the module in charge of controlling instruction pointers

This commit is contained in:
Guillume DIDIER 2021-10-13 13:53:20 +02:00
parent 6f32c1b469
commit 27d592274c
2 changed files with 2 additions and 0 deletions

View File

View File

@ -19,6 +19,8 @@ use std::iter::{Cycle, Peekable};
use std::ops::Range;
use std::{thread, time};
pub mod ip_tool;
// NB these may need to be changed / dynamically measured.
pub const CACHE_LINE_LEN: usize = 64;
pub const PAGE_CACHELINE_LEN: usize = PAGE_LEN / CACHE_LINE_LEN;