summaryrefslogtreecommitdiff
path: root/minix/lib/libc/sys/statvfs.c
blob: b61b4e260db4b35a63f795abc0bb299dabe41408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <sys/cdefs.h>
#include <lib.h>
#include "namespace.h"

#include <sys/types.h>
#include <sys/statvfs.h>
#include <string.h>

#ifdef __weak_alias
__weak_alias(statvfs, _statvfs)
#endif

int statvfs1(const char *name, struct statvfs *buffer, int flags)
{
  message m;

  memset(&m, 0, sizeof(m));
  m.m_lc_vfs_statvfs1.len = strlen(name) + 1;
  m.m_lc_vfs_statvfs1.name =  (vir_bytes)name;
  m.m_lc_vfs_statvfs1.buf = (vir_bytes)buffer;
  m.m_lc_vfs_statvfs1.flags = flags;
  return(_syscall(VFS_PROC_NR, VFS_STATVFS1, &m));
}

int statvfs(const char *name, struct statvfs *buffer)
{
  return statvfs1(name, buffer, ST_WAIT);
}