diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2005-02-23 13:12:43 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2005-02-23 13:12:43 +0000 |
commit | a652e6d52a0d403bc8ffebfc1a83e305eff42d2c (patch) | |
tree | cb4d4fc7dc0fb7a9ca21e229d1b60b370f026daa /winsup/cygwin/cygwin.din | |
parent | e5ef74dfb2c6b8e00daf6afc7ac8895c626a59d9 (diff) | |
download | cygnal-a652e6d52a0d403bc8ffebfc1a83e305eff42d2c.tar.gz cygnal-a652e6d52a0d403bc8ffebfc1a83e305eff42d2c.tar.bz2 cygnal-a652e6d52a0d403bc8ffebfc1a83e305eff42d2c.zip |
* cygwin.din (fstatvfs): Export.
(statvfs): Export.
* syscalls.cc: Include sys/statvfs.h.
(statvfs): New function. Move statfs functionality here.
(fstatvfs): New function.
(statfs): Just call statvfs and copy structure. Check validity of
incoming struct statfs pointer.
* include/cygwin/types.h (fsblkcnt_t): Define.
(fsfilcnt_t): Define.
* include/cygwin/version.h: Bump API minor version.
* include/sys/statvfs.h: New file.
Diffstat (limited to 'winsup/cygwin/cygwin.din')
-rw-r--r-- | winsup/cygwin/cygwin.din | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index 877a544dc..dd8e5a8c4 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -564,6 +564,7 @@ _fsetpos64 = fsetpos64 SIGFE _fstat64 = fstat64 SIGFE fstatfs SIGFE _fstatfs = fstatfs SIGFE +fstatvfs SIGFE fdatasync SIGFE fsync SIGFE _fsync = fsync SIGFE @@ -1307,6 +1308,7 @@ _sscanf = sscanf SIGFE _stat64 = stat64 SIGFE statfs SIGFE _statfs = statfs SIGFE +statvfs SIGFE strcasecmp NOSIGFE _strcasecmp = strcasecmp NOSIGFE strcat NOSIGFE |