
| Current Path : /proc/thread-self/root/include/dovecot/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/include/dovecot/fsync-mode.h |
#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