Skip to content

Commit

Permalink
Increase the SOM stack size.
Browse files Browse the repository at this point in the history
  • Loading branch information
ltratt committed Jan 26, 2024
1 parent 5dc8566 commit 7266fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/vm/somstack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::gc::Gc;

use crate::vm::{objects::NormalArray, val::Val};

pub const SOM_STACK_LEN: usize = 4096;
pub const SOM_STACK_LEN: usize = 16384;

/// A contiguous stack of SOM values. This stack does minimal or no checking on important
/// operations and users must ensure that they obey the constraints on each function herein, or
Expand Down

0 comments on commit 7266fba

Please sign in to comment.