pthread_mutex_unlock (&read_lock);
} /* void plugin_read_all */
-int plugin_flush_one (int timeout, const char *name)
-{
- int (*callback) (int);
- llentry_t *le;
- int status;
-
- if (list_flush == NULL)
- return (-1);
-
- le = llist_search (list_flush, name);
- if (le == NULL)
- return (-1);
- callback = (int (*) (int)) le->value;
-
- status = (*callback) (timeout);
-
- return (status);
-} /* int plugin_flush_ont */
-
void plugin_flush_all (int timeout)
{
int (*callback) (int timeout, const char *identifier);
return (0);
} /* int plugin_flush */
+/* FIXME: Remove this function once the perl plugin has been updated. */
+int plugin_flush_one (int timeout, const char *name)
+{
+ return (plugin_flush (name, timeout, NULL));
+} /* int plugin_flush_one */
+
void plugin_shutdown_all (void)
{
int (*callback) (void);