mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-25 02:46:23 +04:00
Maximum concurrent processes from 40/35->30.
This commit is contained in:
parent
24e530935f
commit
40f37501af
@ -6,7 +6,7 @@ extern crate user_lib;
|
|||||||
|
|
||||||
use user_lib::{fork, wait, exit};
|
use user_lib::{fork, wait, exit};
|
||||||
|
|
||||||
const MAX_CHILD: usize = 40;
|
const MAX_CHILD: usize = 30;
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub fn main() -> i32 {
|
pub fn main() -> i32 {
|
||||||
|
@ -6,7 +6,7 @@ extern crate user_lib;
|
|||||||
|
|
||||||
use user_lib::{fork, wait, yield_, exit, getpid, get_time};
|
use user_lib::{fork, wait, yield_, exit, getpid, get_time};
|
||||||
|
|
||||||
static NUM: usize = 35;
|
static NUM: usize = 30;
|
||||||
const N: usize = 10;
|
const N: usize = 10;
|
||||||
static P: i32 = 10007;
|
static P: i32 = 10007;
|
||||||
type Arr = [[i32; N]; N];
|
type Arr = [[i32; N]; N];
|
||||||
|
Loading…
Reference in New Issue
Block a user