view src/lib/fsync-mode.h @ 22664:fea53c2725c0

director: Fix director_max_parallel_moves/kicks type Should be uint, not time.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 09 Nov 2017 12:24:16 +0200
parents 7f19062f58fd
children
line wrap: on
line source

#ifndef FSYNC_MODE_H
#define FSYNC_MODE_H

enum fsync_mode {
	/* fsync when it's necessary for data safety. */
	FSYNC_MODE_OPTIMIZED = 0,
	/* never fsync (in case of a crash can lose data) */
	FSYNC_MODE_NEVER,
	/* fsync after all writes. this is necessary with NFS to avoid
	   write failures being delayed until file is close(). */
	FSYNC_MODE_ALWAYS
};

#endif