Beispiel #1
0
/**
 * Periodic DB synchronization.
 */
static bool
publisher_sync(void *unused_obj)
{
	(void) unused_obj;

	dbstore_sync_flush(db_pubdata);
	return TRUE;
}
Beispiel #2
0
/**
 * 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 */
}
Beispiel #3
0
/**
 * Periodic DB synchronization.
 */
static bool
keys_sync(void *unused_obj)
{
	(void) unused_obj;

	dbstore_sync_flush(db_keydata);
	values_sync();

	return TRUE;		/* Keep calling */
}