Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
janlugt committed Feb 29, 2024
1 parent 3a95615 commit 795ec1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/apple/macos/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ pub(crate) fn update_process(
}
};
p.status = thread_status;
p.run_time = now.saturating_sub(start_time);
p.run_time = now.saturating_sub(p.start_time);

if refresh_kind.cpu() || refresh_kind.memory() {
let task_info = get_task_info(pid);
Expand Down

0 comments on commit 795ec1a

Please sign in to comment.