diff options
author | Daniel Mack <daniel@zonque.org> | 2015-04-02 14:15:33 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-04-03 15:29:18 +0200 |
commit | f91781329c6d8a760e3c1b88b66b0e2137c2e5ab (patch) | |
tree | 94a417ee58753ea5a92116d0a74ec0a3a044e825 /src/bootchart/store.h | |
parent | 34a4071e998f327945993ea6e6cbcaa0292b4093 (diff) |
bootchart: clean up sysfd and proc handling
Retrieve the handle to procfs in main(), and pass it functions
that need it. Kill the global variables.
Also, refactor lots of code in svg_title(). There's no need to access any
global variables from there either, and we really should return proper
errors from there as well.
Diffstat (limited to 'src/bootchart/store.h')
-rw-r--r-- | src/bootchart/store.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bootchart/store.h b/src/bootchart/store.h index 8cb319275c..bc54f4f631 100644 --- a/src/bootchart/store.h +++ b/src/bootchart/store.h @@ -27,9 +27,6 @@ #include <dirent.h> #include "bootchart.h" -extern DIR *proc; -extern int procfd; - double gettime_ns(void); void log_uptime(void); -int log_sample(int sample, struct list_sample_data **ptr); +int log_sample(DIR *proc, int sample, struct list_sample_data **ptr); |