add more scheduler unittests

This commit is contained in:
2023-01-22 16:58:23 +01:00
parent ce6f804eed
commit 64bac76e29
3 changed files with 60 additions and 9 deletions

View File

@ -131,8 +131,8 @@ pub struct LocalPool {
/// Simple address type used for transactions with the local pool.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct StoreAddr {
pool_idx: u16,
packet_idx: NumBlocks,
pub(crate) pool_idx: u16,
pub(crate) packet_idx: NumBlocks,
}
impl StoreAddr {