We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lm_time_t
lm_process_t::get_start_time() returns lm_time_t, but the type alias is private
lm_process_t::get_start_time()
type lm_time_t = u64;
While I can use u64 as a replacement, it would be nice to use the original type alias
u64
The text was updated successfully, but these errors were encountered:
In the new bindings, this is what the Process looks like:
Process
#[derive(Debug, Clone, PartialEq)] pub struct Process { pub pid: Pid, pub ppid: Pid, pub bits: usize, pub start_time: Time, pub path: String, pub name: String, }
Everything easily accessible, and no weird stuff going on Time here is u64 as well
Time
Sorry, something went wrong.
No branches or pull requests
lm_process_t::get_start_time()
returnslm_time_t
, but the type alias is privatetype lm_time_t = u64;
While I can use
u64
as a replacement, it would be nice to use the original type aliasThe text was updated successfully, but these errors were encountered: