zone->ddns_queue_size = 0;
init_list(&zone->ddns_queue);
- // Journal lock
- pthread_mutex_init(&zone->journal_lock, NULL);
-
// Preferred master lock
pthread_mutex_init(&zone->preferred_lock, NULL);
free_ddns_queue(zone);
pthread_mutex_destroy(&zone->ddns_lock);
- pthread_mutex_destroy(&zone->journal_lock);
/* Control update. */
zone_control_clear(zone);
/*! \brief Control update context. */
struct zone_update *control_update;
- /*! \brief Journal access lock. */
- pthread_mutex_t journal_lock;
-
/*! \brief Ptr to journal DB (in struct server) */
knot_lmdb_db_t *journaldb;