-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathprocess.rs
128 lines (125 loc) · 4.55 KB
/
process.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
//! A command which prints out information about the process it runs in.
#[cfg(all(feature = "process", feature = "param", feature = "system"))]
#[cfg(not(windows))]
fn main() -> rustix::io::Result<()> {
#[cfg(not(target_os = "espidf"))]
use rustix::param::*;
use rustix::process::*;
use rustix::system::*;
println!("Pid: {}", getpid().as_raw_nonzero());
println!("Parent Pid: {}", Pid::as_raw(getppid()));
println!("Group Pid: {}", getpgrp().as_raw_nonzero());
if let Some(ppid) = getppid() {
println!(
"Parent Group Pid: {}",
getpgid(Some(ppid))?.as_raw_nonzero()
);
}
println!("Uid: {}", getuid().as_raw());
println!("Gid: {}", getgid().as_raw());
#[cfg(any(
all(target_os = "android", target_pointer_width = "64"),
target_os = "linux",
))]
{
let (a, b) = linux_hwcap();
println!("Linux hwcap: {:#x}, {:#x}", a, b);
}
#[cfg(not(target_os = "espidf"))]
println!("Page size: {}", page_size());
#[cfg(not(target_os = "espidf"))]
println!("Clock ticks/sec: {}", clock_ticks_per_second());
println!("Uname: {:?}", uname());
#[cfg(not(any(target_os = "espidf", target_os = "fuchsia")))]
{
println!("Process group priority: {}", getpriority_pgrp(None)?);
println!("Process priority: {}", getpriority_process(None)?);
println!("User priority: {}", getpriority_user(Uid::ROOT)?);
}
println!(
"Current working directory: {}",
getcwd(Vec::new())?.to_string_lossy()
);
#[cfg(not(any(target_os = "espidf", target_os = "fuchsia", target_os = "redox")))]
{
println!("Cpu Limit: {:?}", getrlimit(Resource::Cpu));
println!("Fsize Limit: {:?}", getrlimit(Resource::Fsize));
println!("Data Limit: {:?}", getrlimit(Resource::Data));
println!("Stack Limit: {:?}", getrlimit(Resource::Stack));
#[cfg(not(target_os = "haiku"))]
println!("Core Limit: {:?}", getrlimit(Resource::Core));
#[cfg(not(any(solarish, target_os = "cygwin", target_os = "haiku")))]
println!("Rss Limit: {:?}", getrlimit(Resource::Rss));
#[cfg(not(any(solarish, target_os = "cygwin", target_os = "haiku")))]
println!("Nproc Limit: {:?}", getrlimit(Resource::Nproc));
#[cfg(not(target_os = "solaris"))]
println!("Nofile Limit: {:?}", getrlimit(Resource::Nofile));
#[cfg(not(any(solarish, target_os = "aix", target_os = "cygwin", target_os = "haiku")))]
println!("Memlock Limit: {:?}", getrlimit(Resource::Memlock));
#[cfg(not(target_os = "openbsd"))]
println!("As Limit: {:?}", getrlimit(Resource::As));
#[cfg(not(any(
bsd,
solarish,
target_os = "aix",
target_os = "cygwin",
target_os = "haiku",
)))]
println!("Locks Limit: {:?}", getrlimit(Resource::Locks));
#[cfg(not(any(
bsd,
solarish,
target_os = "aix",
target_os = "cygwin",
target_os = "haiku",
)))]
println!("Sigpending Limit: {:?}", getrlimit(Resource::Sigpending));
#[cfg(not(any(
bsd,
solarish,
target_os = "aix",
target_os = "cygwin",
target_os = "haiku",
)))]
println!("Msgqueue Limit: {:?}", getrlimit(Resource::Msgqueue));
#[cfg(not(any(
bsd,
solarish,
target_os = "aix",
target_os = "cygwin",
target_os = "haiku",
)))]
println!("Nice Limit: {:?}", getrlimit(Resource::Nice));
#[cfg(not(any(
bsd,
solarish,
target_os = "aix",
target_os = "cygwin",
target_os = "haiku",
)))]
println!("Rtprio Limit: {:?}", getrlimit(Resource::Rtprio));
#[cfg(not(any(
bsd,
solarish,
target_os = "aix",
target_os = "android",
target_os = "cygwin",
target_os = "emscripten",
target_os = "haiku",
)))]
println!("Rttime Limit: {:?}", getrlimit(Resource::Rttime));
}
#[cfg(any(
all(target_os = "android", target_pointer_width = "64"),
target_os = "linux"
))]
println!("Execfn: {:?}", linux_execfn());
Ok(())
}
#[cfg(any(
windows,
not(all(feature = "process", feature = "param", feature = "system"))
))]
fn main() -> Result<(), &'static str> {
Err("This example requires --features=process,param,system and is not supported on Windows.")
}