From 206edeb6e0df5c4d568fc33ff17bec0e94e232b0 Mon Sep 17 00:00:00 2001 From: zhangxinyu <840317537@qq.com> Date: Wed, 24 May 2023 16:42:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9C=80=E5=A4=A7=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E7=9A=84=E5=BA=94=E7=94=A8=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ch3/os/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch3/os/src/config.rs b/ch3/os/src/config.rs index aad4690..7e29a68 100644 --- a/ch3/os/src/config.rs +++ b/ch3/os/src/config.rs @@ -1,6 +1,6 @@ pub const APP_BASE_ADDRESS: usize = 0x80400000; // 载入的app的起始的地址 pub const APP_SIZE_LIMIT: usize = 0x20000; // app的最大的二进制文件能够使用的大小 -pub const MAX_APP_NUM: usize = 4; // 支持最大的用户应用数量 +pub const MAX_APP_NUM: usize = 10; // 支持最大的用户应用数量 pub const USER_STACK_SIZE: usize = 4096 * 2; // 栈大小为8kb pub const KERNEL_STACK_SIZE: usize = 4096 * 2;