Skip to content

Commit

Permalink
Make PROCESS private
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Apr 9, 2024
1 parent f47da1d commit 9d3efcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ fn clear_process() {
}

thread_local! {
pub(crate) static PROCESS: RefCell<Option<Process>> = const { RefCell::new(None) };
static PROCESS: RefCell<Option<Process>> = const { RefCell::new(None) };
}

// ----------- real process -----------------
Expand Down

0 comments on commit 9d3efcd

Please sign in to comment.