view src/lib/fsync-mode.h @ 23017:c1d36f2575c7 default tip

lib-imap: Fix "Don't accept strings with NULs" cherry-pick
author Timo Sirainen <timo.sirainen@open-xchange.com>
date Thu, 29 Aug 2019 09:55:25 +0300
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