Destroying condition variable.

master
Pedro Alvarez 6 years ago
parent 28844b54dd
commit 58823b1611

@ -54,6 +54,8 @@ logger_file::~logger_file() {
fclose(logfile); fclose(logfile);
} }
pthread_mutex_destroy(&mutex); pthread_mutex_destroy(&mutex);
pthread_cond_destroy(&not_empty);
pthread_cond_destroy(&not_full);
} }
} }

Loading…
Cancel
Save