Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'enhancement-mm-allocator' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ppenna committed Sep 19, 2024
2 parents 377acfe + c46847e commit 12b3d56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "nvx"
version = "0.4.1"
version = "0.4.2"
license-file = "LICENSE.txt"
edition = "2021"
authors = ["The Maintainers of Nanvix"]
Expand Down
4 changes: 2 additions & 2 deletions src/mm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ pub use ::kcall::mm::*;
// Constants
//==================================================================================================

/// Heap size (in bytes).
/// Heap size (in bytes). This value was chosen arbitrarily.
#[cfg(feature = "allocator")]
const HEAP_SIZE: usize = ::kcall::sys::constants::MEGABYTE;
const HEAP_SIZE: usize = 4 * ::kcall::sys::constants::MEGABYTE;

//==================================================================================================
// Standalone Functions
Expand Down

0 comments on commit 12b3d56

Please sign in to comment.