diff options
author | Haru <haru@dotalux.com> | 2014-04-19 13:08:57 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-04-19 13:08:57 +0200 |
commit | 4f0b43cba1f72600ec9618e0dc07ed2282bbfc10 (patch) | |
tree | 8470835e99cb78bdf897764c8f7e6362aec63c25 /src/common | |
parent | 5a5a32793bbfa5d1aeb76a0232ad4312f690b2c3 (diff) | |
download | hercules-4f0b43cba1f72600ec9618e0dc07ed2282bbfc10.tar.gz hercules-4f0b43cba1f72600ec9618e0dc07ed2282bbfc10.tar.bz2 hercules-4f0b43cba1f72600ec9618e0dc07ed2282bbfc10.tar.xz hercules-4f0b43cba1f72600ec9618e0dc07ed2282bbfc10.zip |
Added sysinfo to the exported HPM symbols
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/HPM.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/HPM.c b/src/common/HPM.c index 6d2c45641..9ffce87de 100644 --- a/src/common/HPM.c +++ b/src/common/HPM.c @@ -13,6 +13,7 @@ #include "../common/console.h" #include "../common/strlib.h" #include "../common/sql.h" +#include "../common/sysinfo.h" #include "HPM.h" #include <stdio.h> @@ -717,6 +718,8 @@ void hplugins_share_defaults(void) { HPM->share(timer,"timer"); /* libconfig */ HPM->share(libconfig,"libconfig"); + /* sysinfo */ + HPM->share(sysinfo,"sysinfo"); } void hpm_init(void) { |