-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathesp.rs
More file actions
38 lines (33 loc) · 945 Bytes
/
Copy pathesp.rs
File metadata and controls
38 lines (33 loc) · 945 Bytes
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
use crate::process::ProcessInfo;
use crate::{column_default, Column};
use std::cmp;
use std::collections::HashMap;
pub struct Esp {
header: String,
unit: String,
fmt_contents: HashMap<i32, String>,
raw_contents: HashMap<i32, u64>,
width: usize,
}
impl Esp {
pub fn new(header: Option<String>) -> Self {
let header = header.unwrap_or_else(|| String::from("ESP"));
let unit = String::new();
Self {
fmt_contents: HashMap::new(),
raw_contents: HashMap::new(),
width: 0,
header,
unit,
}
}
}
impl Column for Esp {
fn add(&mut self, proc: &ProcessInfo) {
let raw_content = proc.curr_proc.stat().kstkesp;
let fmt_content = format!("{raw_content:016x}");
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(u64, true);
}