Crates.io | proclist |
lib.rs | proclist |
version | 0.9.2 |
source | src |
created_at | 2018-10-15 09:07:35.722474 |
updated_at | 2018-10-21 17:47:31.317708 |
description | Cross-platform library to retrieve OS processes information. |
homepage | |
repository | https://github.com/ivxvm/proclist-rs |
max_upload_size | |
id | 90282 |
size | 28,697 |
Cross-platform library to retrieve OS processes information.
extern crate proclist;
fn main() {
for process_info in proclist::iterate_processes_info().filter_map(|r| r.ok()) {
println!("[name]: {}, [pid]: {}", process_info.name, process_info.pid);
}
}
CreateToolhelp32Snapshot
, Process32First
, Process32Next
procfs
proc_listpids
, proc_pidinfo
, proc_name
Licensed under either of:
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.