Skip to content

Commit

Permalink
[runtime] Enhancement: Change upper limit to 64k
Browse files Browse the repository at this point in the history
  • Loading branch information
anandbonde committed Jun 12, 2024
1 parent c3df16b commit 3d6bb8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ use std::{
//======================================================================================================================

const MIN_TIMER_RESOLUTION: usize = 64;
const MAX_TIMER_RESOLUTION: usize = 128_000;
const MAX_TIMER_RESOLUTION: usize = 64_000;
const FINE_TIMER_RESOLUTION: usize = 2;

//======================================================================================================================
Expand Down

0 comments on commit 3d6bb8b

Please sign in to comment.