2018-10-14 19:28:18 +08:00
|
|
|
/*
|
2022-06-19 21:56:24 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2018-10-14 19:28:18 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2023-03-29 11:54:25 +08:00
|
|
|
* 2023-03-27 xqyjlj adapt musl
|
2018-10-14 19:28:18 +08:00
|
|
|
*/
|
2022-01-08 23:29:41 +08:00
|
|
|
|
2021-09-12 03:34:59 +08:00
|
|
|
#ifndef __SYS_STATFS_H__
|
|
|
|
#define __SYS_STATFS_H__
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2021-09-12 03:34:59 +08:00
|
|
|
#include <stddef.h>
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2022-04-02 16:21:45 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2023-03-29 11:54:25 +08:00
|
|
|
#ifdef RT_USING_MUSLLIBC
|
|
|
|
/* this is required for musl <sys/statfs.h> */
|
|
|
|
#ifndef _POSIX_SOURCE
|
|
|
|
#define _POSIX_SOURCE
|
|
|
|
#include_next <sys/statfs.h>
|
|
|
|
/* limiting influence of _POSIX_SOURCE */
|
|
|
|
#undef _POSIX_SOURCE
|
|
|
|
|
|
|
|
#else /* def _POSIX_SOURCE */
|
|
|
|
#include_next <sys/statfs.h>
|
|
|
|
#endif
|
|
|
|
#else
|
2013-01-08 22:40:58 +08:00
|
|
|
struct statfs
|
|
|
|
{
|
2021-09-12 03:34:59 +08:00
|
|
|
size_t f_bsize; /* block size */
|
|
|
|
size_t f_blocks; /* total data blocks in file system */
|
|
|
|
size_t f_bfree; /* free blocks in file system */
|
2023-03-29 11:54:25 +08:00
|
|
|
size_t f_bavail; /* free blocks available to unprivileged user*/
|
2013-01-08 22:40:58 +08:00
|
|
|
};
|
|
|
|
|
2021-09-12 03:34:59 +08:00
|
|
|
int statfs(const char *path, struct statfs *buf);
|
|
|
|
int fstatfs(int fd, struct statfs *buf);
|
|
|
|
|
2023-03-29 11:54:25 +08:00
|
|
|
#endif
|
|
|
|
|
2022-04-02 16:21:45 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#endif
|