projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
881f4cb
)
plugin interface: If an init-function fails, write an error to syslog and remove...
author
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Sun, 4 Feb 2007 09:14:35 +0000
(10:14 +0100)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Sun, 4 Feb 2007 09:14:35 +0000
(10:14 +0100)
src/plugin.c
patch
|
blob
|
history
diff --git
a/src/plugin.c
b/src/plugin.c
index
2daeea9
..
1a029e4
100644
(file)
--- a/
src/plugin.c
+++ b/
src/plugin.c
@@
-317,6
+317,7
@@
void plugin_init_all (void)
{
int (*callback) (void);
llentry_t *le;
+ int status;
gethostname (hostname, sizeof (hostname));
@@
-327,7
+328,16
@@
void plugin_init_all (void)
while (le != NULL)
{
callback = le->value;
- (*callback) ();
+ status = (*callback) ();
+
+ if (status != 0)
+ {
+ syslog (LOG_ERR, "Initialization of plugin `%s' "
+ "failed with status %i. "
+ "Plugin will be unloaded. TODO!",
+ le->key, status);
+ plugin_unregister_read (le->key);
+ }
le = le->next;
}