summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-18 22:17:12 +0100
committerinfirit <[email protected]>2014-12-18 22:17:12 +0100
commitba876f3e3791741d977dd72e16b760c39a71e047 (patch)
tree04ba1de7b70226c0944d5f9645ceb79f2b4a956c
parent76668e10cc298fd1c3bc9b1c9fefba27580306c5 (diff)
downloadmate-system-monitor-ba876f3e3791741d977dd72e16b760c39a71e047.tar.bz2
mate-system-monitor-ba876f3e3791741d977dd72e16b760c39a71e047.tar.xz
procman: small whitespace cleanup
-rw-r--r--src/procman.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/procman.h b/src/procman.h
index 940ac8a..91f7ea4 100644
--- a/src/procman.h
+++ b/src/procman.h
@@ -113,32 +113,32 @@ struct ProcConfig
struct MutableProcInfo
{
MutableProcInfo()
- : status(0)
- { }
-
- std::string user;
-
- gchar wchan[40];
-
- // all these members are filled with libgtop which uses
- // guint64 (to have fixed size data) but we don't need more
- // than an unsigned long (even for 32bit apps on a 64bit
- // kernel) as these data are amounts, not offsets.
- gulong vmsize;
- gulong memres;
- gulong memshared;
- gulong memwritable;
- gulong mem;
-
- // wnck gives an unsigned long
- gulong memxserver;
-
- gulong start_time;
- guint64 cpu_time;
- guint status;
- guint pcpu;
- gint nice;
- gchar *cgroup_name;
+: status(0)
+ { }
+
+ std::string user;
+
+ gchar wchan[40];
+
+ // all these members are filled with libgtop which uses
+ // guint64 (to have fixed size data) but we don't need more
+ // than an unsigned long (even for 32bit apps on a 64bit
+ // kernel) as these data are amounts, not offsets.
+ gulong vmsize;
+ gulong memres;
+ gulong memshared;
+ gulong memwritable;
+ gulong mem;
+
+ // wnck gives an unsigned long
+ gulong memxserver;
+
+ gulong start_time;
+ guint64 cpu_time;
+ guint status;
+ guint pcpu;
+ gint nice;
+ gchar *cgroup_name;
};