htoprs 0.5.3

A faithful Rust port of htop — the interactive process viewer
Documentation
1
2
3
4
5
6
7
8
9
//! Port of htop's `generic/` — the platform-independent helpers each
//! platform's `Platform.c` aliases via `#define` (e.g. the per-platform
//! `#define Platform_gettime_realtime Generic_gettime_realtime`). Compiled on
//! every target so the shared `Machine`/meter code can call them regardless of
//! which platform module is active.
#![allow(non_snake_case)]

pub mod fdstat_sysctl;
pub mod gettime;