6 #include <sys/statvfs.h>
8 int getvfsstat(struct statvfs
*buf
, size_t bufsize
, int flags
)
12 memset(&m
, 0, sizeof(m
));
13 m
.m_lc_vfs_getvfsstat
.buf
= (vir_bytes
) buf
;
14 m
.m_lc_vfs_getvfsstat
.len
= bufsize
;
15 m
.m_lc_vfs_getvfsstat
.flags
= flags
;
16 return(_syscall(VFS_PROC_NR
, VFS_GETVFSSTAT
, &m
));