index adea849ab05b9af215ac7e5d019304cb67aa9023..06edf062c1b038445fd89af3820452744848613c 100644 (file)
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.154 2010年02月15日 00:50:57 stark Exp $
+ * $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.155 2010年02月22日 15:26:14 tgl Exp $
*
* NOTES:
*
#elif defined(F_FULLFSYNC)
return (fcntl(fd, F_FULLFSYNC, 0) == -1) ? -1 : 0;
#else
+ errno = ENOSYS;
return -1;
#endif
}