From: Florian Forster Date: Thu, 19 Feb 2009 22:38:52 +0000 (+0100) Subject: java plugin: Use the new `plugin_dispatch_values_async' function. X-Git-Tag: collectd-4.7.0~114^2~41^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=48b597ad215f915dfc6d7c5d4152b1dfd16c199f;p=collectd.git java plugin: Use the new `plugin_dispatch_values_async' function. Having Java read- and write-functions at the same time works now \o/ --- diff --git a/src/java.c b/src/java.c index aec39b0b..74760e4d 100644 --- a/src/java.c +++ b/src/java.c @@ -1118,7 +1118,7 @@ static jint JNICALL cjni_api_dispatch_values (JNIEnv *jvm_env, /* {{{ */ return (-1); } - status = plugin_dispatch_values (&vl); + status = plugin_dispatch_values_async (&vl); sfree (vl.values);