From 26fda2bf0dcf93014abbc7cb69f39bfded82a1ec Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Fri, 7 Aug 2020 11:38:38 -0700 Subject: [PATCH] Improve some formatting in proc.h --- src/proc.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/proc.h b/src/proc.h index deb36a7c7..7ddc721ff 100644 --- a/src/proc.h +++ b/src/proc.h @@ -276,14 +276,19 @@ class process_t { /// File descriptor that pipe output should bind to. int pipe_write_fd{0}; + /// True if process has completed. bool completed{false}; + /// True if process has stopped. bool stopped{false}; + /// Reported status value. proc_status_t status{}; + /// Last time of cpu time check. struct timeval last_time {}; + /// Number of jiffies spent in process at last cpu time check. unsigned long last_jiffies{0}; };