X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fftruncate.c;h=ae1e85890c23956f2aab5a2362665599b8fdea5d;hb=6d947f828e1404e19a29a6913b7c967f44f5c0f0;hp=33b69d81076040bb128f0555d9e230f34e66ec6a;hpb=441aa3044f43e5572f58c354f01e6bc070acd5c7;p=gnulib.git diff --git a/lib/ftruncate.c b/lib/ftruncate.c index 33b69d810..ae1e85890 100644 --- a/lib/ftruncate.c +++ b/lib/ftruncate.c @@ -1,4 +1,4 @@ -/* ftruncate emulations that work on some System V's. +/* ftruncate emulations for native Windows. This file is in the public domain. */ #include @@ -6,67 +6,33 @@ /* Specification. */ #include -#include -#include +#if HAVE_CHSIZE -#ifdef F_CHSIZE +# include +# include -int -ftruncate (int fd, off_t length) -{ - return fcntl (fd, F_CHSIZE, length); -} - -#else /* not F_CHSIZE */ -# ifdef F_FREESP - -/* By William Kucharski . */ - -# include -# include - -int -ftruncate (int fd, off_t length) +# if HAVE_MSVC_INVALID_PARAMETER_HANDLER +# include "msvc-inval.h" +static inline int +chsize_nothrow (int fd, long length) { - struct flock fl; - struct stat filebuf; - - if (fstat (fd, &filebuf) < 0) - return -1; + int result; - if (filebuf.st_size < length) + TRY_MSVC_INVAL { - /* Extend file length. */ - if (lseek (fd, (length - 1), SEEK_SET) < 0) - return -1; - - /* Write a "0" byte. */ - if (write (fd, "", 1) != 1) - return -1; + result = chsize (fd, length); } - else + CATCH_MSVC_INVAL { - - /* Truncate length. */ - - fl.l_whence = 0; - fl.l_len = 0; - fl.l_start = length; - fl.l_type = F_WRLCK; /* write lock on file space */ - - /* This relies on the *undocumented* F_FREESP argument to fcntl, - which truncates the file so that it ends at the position - indicated by fl.l_start. Will minor miracles never cease? */ - - if (fcntl (fd, F_FREESP, &fl) < 0) - return -1; + result = -1; + errno = EBADF; } + DONE_MSVC_INVAL; - return 0; + return result; } - -# else /* not F_CHSIZE nor F_FREESP */ -# if HAVE_CHSIZE /* native Windows, e.g. mingw */ +# define chsize chsize_nothrow +# endif int ftruncate (int fd, off_t length) @@ -74,17 +40,4 @@ ftruncate (int fd, off_t length) return chsize (fd, length); } -# else /* not F_CHSIZE nor F_FREESP nor HAVE_CHSIZE */ - -# include - -int -ftruncate (int fd, off_t length) -{ - errno = EIO; - return -1; -} - -# endif /* not HAVE_CHSIZE */ -# endif /* not F_FREESP */ -#endif /* not F_CHSIZE */ +#endif