summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 799ef5d)
raw | patch | inline | side by side (parent: 799ef5d)
author | Pavel Rochnyack <pavel2000@ngs.ru> | |
Mon, 30 May 2016 05:52:21 +0000 (11:52 +0600) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Mon, 30 May 2016 19:51:36 +0000 (21:51 +0200) |
src/perl.c | patch | blob | history |
diff --git a/src/perl.c b/src/perl.c
index d253d09d0815fafc21ad77b5565d921d5b6214fc..434e8086608dffd2f1fdeca720402f9e0284ac74 100644 (file)
--- a/src/perl.c
+++ b/src/perl.c
} /* static int pplugin_dispatch_notification (HV *) */
/*
- * Call all working functions of the given type.
+ * Call perl sub with thread locking flags handled.
*/
-static int pplugin_call_all (pTHX_ int type, ...)
+static int call_pv_locked (pTHX_ const char* sub_name)
{
- int retvals = 0;
-
_Bool old_running;
- va_list ap;
- int ret = 0;
-
- dSP;
+ int ret;
c_ithread_t *t = (c_ithread_t *)pthread_getspecific(perl_thr_key);
- if (t == NULL) /* thread destroyed ( c_ithread_destroy*() -> log_debug() ) */
+ if (t == NULL) /* thread destroyed */
return 0;
old_running = t->running;
t->running = 1;
-
+
if (t->shutdown) {
t->running = old_running;
return 0;
}
+ ret = call_pv (sub_name, G_SCALAR);
+
+ t->running = old_running;
+ return ret;
+} /* static int call_pv_locked (pTHX, *sub_name) */
+
+/*
+ * Call all working functions of the given type.
+ */
+static int pplugin_call_all (pTHX_ int type, ...)
+{
+ int retvals = 0;
+
+ va_list ap;
+ int ret = 0;
+
+ dSP;
+
if ((type < 0) || (type >= PLUGIN_TYPES))
return -1;
PUTBACK;
- retvals = call_pv ("Collectd::plugin_call_all", G_SCALAR);
+ retvals = call_pv_locked (aTHX_ "Collectd::plugin_call_all");
SPAGAIN;
if (0 < retvals) {
FREETMPS;
LEAVE;
- t->running = old_running;
va_end (ap);
return ret;
} /* static int pplugin_call_all (int, ...) */
{
int retvals = 0;
- _Bool old_running;
va_list ap;
int ret = 0;
dSP;
- c_ithread_t *t = (c_ithread_t *)pthread_getspecific(perl_thr_key);
- if (t == NULL) /* thread destroyed */
- return 0;
-
- old_running = t->running;
- t->running = 1;
-
- if (t->shutdown) {
- t->running = old_running;
- return 0;
- }
-
if ((type < 0) || (type >= FC_TYPES))
return -1;
PUTBACK;
- retvals = call_pv ("Collectd::fc_call", G_SCALAR);
+ retvals = call_pv_locked (aTHX_ "Collectd::fc_call");
if ((FC_CB_EXEC == cb_type) && (meta != NULL)) {
assert (pmeta != NULL);
FREETMPS;
LEAVE;
- t->running = old_running;
va_end (ap);
return ret;
} /* static int fc_call (int, int, pfc_user_data_t *, ...) */