mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
32 lines
896 B
C
32 lines
896 B
C
/*
|
|
* Copyright 2016 The Emscripten Authors. All rights reserved.
|
|
* Emscripten is available under two separate licenses, the MIT license and the
|
|
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <sys/statvfs.h>
|
|
|
|
int main() {
|
|
struct statvfs s;
|
|
|
|
printf("result: %d\n", statvfs("/test", &s));
|
|
printf("errno: %d\n", errno);
|
|
|
|
printf("f_bsize: %lu\n", s.f_bsize);
|
|
printf("f_frsize: %lu\n", s.f_frsize);
|
|
printf("f_blocks: %lu\n", s.f_blocks);
|
|
printf("f_bfree: %lu\n", s.f_bfree);
|
|
printf("f_bavail: %lu\n", s.f_bavail);
|
|
printf("f_files: %d\n", s.f_files > 5);
|
|
printf("f_ffree: %lu\n", s.f_ffree);
|
|
printf("f_favail: %lu\n", s.f_favail);
|
|
printf("f_fsid: %lu\n", s.f_fsid);
|
|
printf("f_flag: %lu\n", s.f_flag);
|
|
printf("f_namemax: %lu\n", s.f_namemax);
|
|
|
|
return 0;
|
|
}
|