We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e99b7ca commit 4f25dd0Copy full SHA for 4f25dd0
crates/fig_os_shim/src/process_info/mod.rs
@@ -1,11 +1,21 @@
1
mod pid;
2
3
use std::path::PathBuf;
4
-use std::sync::{Arc, Weak};
5
-
6
-pub use pid::{FakePid, Pid, RawPid};
7
8
-use crate::{Context, Shim};
+use std::sync::{
+ Arc,
+ Weak,
+};
+
9
+pub use pid::{
10
+ FakePid,
11
+ Pid,
12
+ RawPid,
13
14
15
+use crate::{
16
+ Context,
17
+ Shim,
18
19
20
#[cfg(target_os = "linux")]
21
mod linux;
0 commit comments