PTHREAD_COND_INITIALIZER may only be used to initialize static cond variables.
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 2 Nov 2008 17:09:36 +0000 (17:09 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 2 Nov 2008 17:09:36 +0000 (17:09 +0000)
-- Sebastian Harl

git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1643 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_daemon.c

index bee21a2..7201c52 100644 (file)
@@ -1450,7 +1450,7 @@ static int handle_request_update (listen_socket_t *sock, /* {{{ */
 
     wipe_ci_values(ci, now);
     ci->flags = CI_FLAGS_IN_TREE;
 
     wipe_ci_values(ci, now);
     ci->flags = CI_FLAGS_IN_TREE;
-    ci->flushed = PTHREAD_COND_INITIALIZER;
+    pthread_cond_init(&ci->flushed, NULL);
 
     pthread_mutex_lock(&cache_lock);
     g_tree_insert (cache_tree, (void *) ci->file, (void *) ci);
 
     pthread_mutex_lock(&cache_lock);
     g_tree_insert (cache_tree, (void *) ci->file, (void *) ci);