2
0

freebsd.h 301 B

12345678910
  1. /* src/include/port/freebsd.h */
  2. /*
  3. * Set the default wal_sync_method to fdatasync. xlogdefs.h's normal rules
  4. * would prefer open_datasync on FreeBSD 13+, but that is not a good choice on
  5. * many systems.
  6. */
  7. #ifdef HAVE_FDATASYNC
  8. #define PLATFORM_DEFAULT_SYNC_METHOD SYNC_METHOD_FDATASYNC
  9. #endif