ad7e3e56c8
Change-Id: Iaf71cdddb48f64d84773029da2c0666f5462f198
26 lines
539 B
C
26 lines
539 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <sys/statvfs.h>
|
|
|
|
#if defined(__weak_alias)
|
|
__weak_alias(fstatvfs, _fstatvfs)
|
|
#endif
|
|
|
|
int fstatvfs1(int fd, struct statvfs *buffer, int flags)
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.m_lc_vfs_statvfs1.fd = fd;
|
|
m.m_lc_vfs_statvfs1.buf = (vir_bytes)buffer;
|
|
m.m_lc_vfs_statvfs1.flags = flags;
|
|
return(_syscall(VFS_PROC_NR, VFS_FSTATVFS1, &m));
|
|
}
|
|
|
|
int fstatvfs(int fd, struct statvfs *buffer)
|
|
{
|
|
return fstatvfs1(fd, buffer, ST_WAIT);
|
|
}
|