summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2ebeae4)
raw | patch | inline | side by side (parent: 2ebeae4)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 12 Oct 2007 20:59:15 +0000 (22:59 +0200) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Tue, 30 Oct 2007 07:24:28 +0000 (08:24 +0100) |
src/rrdtool.c | patch | blob | history |
diff --git a/src/rrdtool.c b/src/rrdtool.c
index 368858172a92dfee9fb52d56eebb3e86e5c2ab57..d274ba021b65146cd2cf7195421e045c52a1f5d5 100644 (file)
--- a/src/rrdtool.c
+++ b/src/rrdtool.c
rrd_cache_flush (-1);
pthread_mutex_unlock (&cache_lock);
+ pthread_mutex_lock (&queue_lock);
+ do_shutdown = 1;
+ pthread_cond_signal (&queue_cond);
+ pthread_mutex_unlock (&queue_lock);
+
/* Wait for all the values to be written to disk before returning. */
if (queue_thread != 0)
{
DEBUG ("rrdtool plugin: queue_thread exited.");
}
- pthread_mutex_lock (&queue_lock);
- do_shutdown = 1;
- pthread_cond_signal (&queue_cond);
- pthread_mutex_unlock (&queue_lock);
-
return (0);
} /* int rrd_shutdown */