Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: statvfs.h
/* Copyright (C) 1997-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _SYS_STATVFS_H
[17] Fix | Delete
# error "Never include <bits/statvfs.h> directly; use <sys/statvfs.h> instead."
[18] Fix | Delete
#endif
[19] Fix | Delete
[20] Fix | Delete
#include <bits/types.h> /* For __fsblkcnt_t and __fsfilcnt_t. */
[21] Fix | Delete
[22] Fix | Delete
#if (__WORDSIZE == 32 \
[23] Fix | Delete
&& (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
[24] Fix | Delete
#define _STATVFSBUF_F_UNUSED
[25] Fix | Delete
#endif
[26] Fix | Delete
[27] Fix | Delete
struct statvfs
[28] Fix | Delete
{
[29] Fix | Delete
unsigned long int f_bsize;
[30] Fix | Delete
unsigned long int f_frsize;
[31] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[32] Fix | Delete
__fsblkcnt_t f_blocks;
[33] Fix | Delete
__fsblkcnt_t f_bfree;
[34] Fix | Delete
__fsblkcnt_t f_bavail;
[35] Fix | Delete
__fsfilcnt_t f_files;
[36] Fix | Delete
__fsfilcnt_t f_ffree;
[37] Fix | Delete
__fsfilcnt_t f_favail;
[38] Fix | Delete
#else
[39] Fix | Delete
__fsblkcnt64_t f_blocks;
[40] Fix | Delete
__fsblkcnt64_t f_bfree;
[41] Fix | Delete
__fsblkcnt64_t f_bavail;
[42] Fix | Delete
__fsfilcnt64_t f_files;
[43] Fix | Delete
__fsfilcnt64_t f_ffree;
[44] Fix | Delete
__fsfilcnt64_t f_favail;
[45] Fix | Delete
#endif
[46] Fix | Delete
unsigned long int f_fsid;
[47] Fix | Delete
#ifdef _STATVFSBUF_F_UNUSED
[48] Fix | Delete
int __f_unused;
[49] Fix | Delete
#endif
[50] Fix | Delete
unsigned long int f_flag;
[51] Fix | Delete
unsigned long int f_namemax;
[52] Fix | Delete
int __f_spare[6];
[53] Fix | Delete
};
[54] Fix | Delete
[55] Fix | Delete
#ifdef __USE_LARGEFILE64
[56] Fix | Delete
struct statvfs64
[57] Fix | Delete
{
[58] Fix | Delete
unsigned long int f_bsize;
[59] Fix | Delete
unsigned long int f_frsize;
[60] Fix | Delete
__fsblkcnt64_t f_blocks;
[61] Fix | Delete
__fsblkcnt64_t f_bfree;
[62] Fix | Delete
__fsblkcnt64_t f_bavail;
[63] Fix | Delete
__fsfilcnt64_t f_files;
[64] Fix | Delete
__fsfilcnt64_t f_ffree;
[65] Fix | Delete
__fsfilcnt64_t f_favail;
[66] Fix | Delete
unsigned long int f_fsid;
[67] Fix | Delete
#ifdef _STATVFSBUF_F_UNUSED
[68] Fix | Delete
int __f_unused;
[69] Fix | Delete
#endif
[70] Fix | Delete
unsigned long int f_flag;
[71] Fix | Delete
unsigned long int f_namemax;
[72] Fix | Delete
int __f_spare[6];
[73] Fix | Delete
};
[74] Fix | Delete
#endif
[75] Fix | Delete
[76] Fix | Delete
/* Definitions for the flag in `f_flag'. These definitions should be
[77] Fix | Delete
kept in sync with the definitions in <sys/mount.h>. */
[78] Fix | Delete
enum
[79] Fix | Delete
{
[80] Fix | Delete
ST_RDONLY = 1, /* Mount read-only. */
[81] Fix | Delete
#define ST_RDONLY ST_RDONLY
[82] Fix | Delete
ST_NOSUID = 2 /* Ignore suid and sgid bits. */
[83] Fix | Delete
#define ST_NOSUID ST_NOSUID
[84] Fix | Delete
#ifdef __USE_GNU
[85] Fix | Delete
,
[86] Fix | Delete
ST_NODEV = 4, /* Disallow access to device special files. */
[87] Fix | Delete
# define ST_NODEV ST_NODEV
[88] Fix | Delete
ST_NOEXEC = 8, /* Disallow program execution. */
[89] Fix | Delete
# define ST_NOEXEC ST_NOEXEC
[90] Fix | Delete
ST_SYNCHRONOUS = 16, /* Writes are synced at once. */
[91] Fix | Delete
# define ST_SYNCHRONOUS ST_SYNCHRONOUS
[92] Fix | Delete
ST_MANDLOCK = 64, /* Allow mandatory locks on an FS. */
[93] Fix | Delete
# define ST_MANDLOCK ST_MANDLOCK
[94] Fix | Delete
ST_WRITE = 128, /* Write on file/directory/symlink. */
[95] Fix | Delete
# define ST_WRITE ST_WRITE
[96] Fix | Delete
ST_APPEND = 256, /* Append-only file. */
[97] Fix | Delete
# define ST_APPEND ST_APPEND
[98] Fix | Delete
ST_IMMUTABLE = 512, /* Immutable file. */
[99] Fix | Delete
# define ST_IMMUTABLE ST_IMMUTABLE
[100] Fix | Delete
ST_NOATIME = 1024, /* Do not update access times. */
[101] Fix | Delete
# define ST_NOATIME ST_NOATIME
[102] Fix | Delete
ST_NODIRATIME = 2048, /* Do not update directory access times. */
[103] Fix | Delete
# define ST_NODIRATIME ST_NODIRATIME
[104] Fix | Delete
ST_RELATIME = 4096 /* Update atime relative to mtime/ctime. */
[105] Fix | Delete
# define ST_RELATIME ST_RELATIME
[106] Fix | Delete
#endif /* Use GNU. */
[107] Fix | Delete
};
[108] Fix | Delete
[109] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function