/** * Periodic DB synchronization. */ static bool publisher_sync(void *unused_obj) { (void) unused_obj; dbstore_sync_flush(db_pubdata); return TRUE; }
/** * Callout queue periodic event to synchronize the disk image. */ static bool guid_periodic_sync(void *unused_obj) { (void) unused_obj; dbstore_sync_flush(db_guid); return TRUE; /* Keep calling */ }
/** * Periodic DB synchronization. */ static bool keys_sync(void *unused_obj) { (void) unused_obj; dbstore_sync_flush(db_keydata); values_sync(); return TRUE; /* Keep calling */ }