| Crates.io | proclist |
| lib.rs | proclist |
| version | 0.9.2 |
| created_at | 2018-10-15 09:07:35.722474+00 |
| updated_at | 2018-10-21 17:47:31.317708+00 |
| 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, Process32Nextprocfsproc_listpids, proc_pidinfo, proc_nameLicensed 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.