Skip to content

Commit 25e438e

Browse files
committed
Make PROCESS private
1 parent 859e493 commit 25e438e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/process/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ fn clear_process() {
203203
}
204204

205205
thread_local! {
206-
pub(crate) static PROCESS: RefCell<Option<Process>> = const { RefCell::new(None) };
206+
static PROCESS: RefCell<Option<Process>> = const { RefCell::new(None) };
207207
}
208208

209209
// ----------- real process -----------------

0 commit comments

Comments
 (0)