1
0
forked from Rativel/BurritOS

Move system to the right location

This commit is contained in:
Quentin Legot
2023-03-01 17:01:02 +01:00
committed by François Autin
parent 83df053dc6
commit 621b0568b0
5 changed files with 7 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
use std::sync::Arc;
use super::{process::Process, mgerror::ErrorCode};
use crate::{simulator::machine::{NUM_INT_REGS, NUM_FP_REGS, STACK_REG}, utility::system::{ObjectType, G_ALIVE, G_SCHEDULER}, kernel::scheduler};
use super::{process::Process, mgerror::ErrorCode, system::{ObjectType, G_ALIVE, G_SCHEDULER}};
use crate::{simulator::machine::{NUM_INT_REGS, NUM_FP_REGS, STACK_REG}};
const SIMULATORSTACKSIZE: usize = 32 * 1024;