4 * Copyright 2004 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
26 #include <sys/types.h>
29 #ifdef HAVE_SYS_PARAM_H
30 # include <sys/param.h>
35 #ifdef HAVE_SYS_MOUNT_H
36 # include <sys/mount.h>
38 #ifdef HAVE_SYS_STATFS_H
39 # include <sys/statfs.h>
42 int statvfs( const char *path, struct statvfs *buf )
48 /* FIXME: add autoconf check for this */
49 #if defined(__svr4__) || defined(_SCO_DS) || defined(__sun)
50 ret = statfs( path, &info, 0, 0 );
52 ret = statfs( path, &info );
56 memset( buf, 0, sizeof(*buf) );
57 buf->f_bsize = info.f_bsize;
58 buf->f_blocks = info.f_blocks;
59 buf->f_files = info.f_files;
60 #ifdef HAVE_STRUCT_STATFS_F_NAMELEN
61 buf->f_namemax = info.f_namelen;
63 #ifdef HAVE_STRUCT_STATFS_F_FRSIZE
64 buf->f_frsize = info.f_frsize;
66 buf->f_frsize = info.f_bsize;
68 #ifdef HAVE_STRUCT_STATFS_F_BFREE
69 buf->f_bfree = info.f_bfree;
71 buf->f_bfree = info.f_bavail;
73 #ifdef HAVE_STRUCT_STATFS_F_BAVAIL
74 buf->f_bavail = info.f_bavail;
76 buf->f_bavail = info.f_bfree;
78 #ifdef HAVE_STRUCT_STATFS_F_FFREE
79 buf->f_ffree = info.f_ffree;
81 buf->f_ffree = info.f_favail;
83 #ifdef HAVE_STRUCT_STATFS_F_FAVAIL
84 buf->f_favail = info.f_favail;
86 buf->f_favail = info.f_ffree;
89 #else /* HAVE_STATFS */
92 #endif /* HAVE_STATFS */
96 #endif /* HAVE_STATVFS */