Skip to content

Commit 4894bb7

Browse files
Change procps/pid/(stat|status).pm modules to be pub
1 parent 260a1e6 commit 4894bb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/procrs/pid/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ use std::cmp::Ordering;
88
use std::str::FromStr;
99

1010
/// Get process stats (/proc/[pid]/stat)
11-
mod stat;
11+
pub mod stat;
1212
/// Get process status (/proc/[pid]/status)
13-
mod status;
13+
pub mod status;
1414

1515
use self::stat::PidStat;
1616
use self::status::PidStatus;

0 commit comments

Comments
 (0)