summaryrefslogtreecommitdiff
path: root/bits
diff options
context:
space:
mode:
Diffstat (limited to 'bits')
-rw-r--r--bits/confname.h10
-rw-r--r--bits/resource.h15
-rw-r--r--bits/stat.h14
-rw-r--r--bits/statfs.h24
4 files changed, 56 insertions, 7 deletions
diff --git a/bits/confname.h b/bits/confname.h
index 1b75d6e5b5..8aac5cb67d 100644
--- a/bits/confname.h
+++ b/bits/confname.h
@@ -41,6 +41,7 @@ enum
_PC_NO_TRUNC,
#define _PC_NO_TRUNC _PC_NO_TRUNC
_PC_VDISABLE,
+#define _PC_VDISABLE _PC_VDISABLE
_PC_SYNC_IO,
#define _PC_SYNC_IO _PC_SYNC_IO
_PC_ASYNC_IO,
@@ -325,8 +326,15 @@ enum
#define _SC_XBS5_ILP32_OFFBIG _SC_XBS5_ILP32_OFFBIG
_SC_XBS5_LP64_OFF64,
#define _SC_XBS5_LP64_OFF64 _SC_XBS5_LP64_OFF64
- _SC_XBS5_LPBIG_OFFBIG
+ _SC_XBS5_LPBIG_OFFBIG,
#define _SC_XBS5_LPBIG_OFFBIG _SC_XBS5_LPBIG_OFFBIG
+
+ _SC_XOPEN_LEGACY,
+#define _SC_XOPEN_LEGACY _SC_XOPEN_LEGACY
+ _SC_XOPEN_REALTIME,
+#define _SC_XOPEN_REALTIME _SC_XOPEN_REALTIME
+ _SC_XOPEN_REALTIME_THREADS
+#define _SC_XOPEN_REALTIME_THREADS _SC_XOPEN_REALTIME_THREADS
};
#if (defined __USE_POSIX2 || defined __USE_UNIX98 \
diff --git a/bits/resource.h b/bits/resource.h
index e72836d3c7..e29be98210 100644
--- a/bits/resource.h
+++ b/bits/resource.h
@@ -66,11 +66,20 @@ enum __rlimit_resource
RLIMIT_NLIMITS, /* Number of limit flavors. */
RLIM_NLIMITS = RLIMIT_NLIMITS, /* Traditional name for same. */
-
- RLIM_INFINITY = 0x7fffffff /* Value to indicate that there is no limit. */
-#define RLIM_INFINITY RLIM_INFINITY
};
+/* Value to indicate that there is no limit. */
+#ifndef __USE_FILE_OFFSET64
+# define RLIM_INFINITY 0x7fffffff
+#else
+# define RLIM_INFINITY 0x7fffffffffffffffLL
+#endif
+
+#ifdef __USE_LARGEFILE64
+# define RLIM64_INFINITY 0x7fffffffffffffffLL
+#endif
+
+
/* Type for resource quantity measurement. */
#ifndef __USE_FILE_OFFSET64
typedef __rlim_t rlim_t;
diff --git a/bits/stat.h b/bits/stat.h
index a0edf2be52..bdc3a48de9 100644
--- a/bits/stat.h
+++ b/bits/stat.h
@@ -31,13 +31,21 @@ struct stat
/* These are the members that POSIX.1 requires. */
__mode_t st_mode; /* File mode. */
+#ifndef __USE_FILE_OFFSET64
__ino_t st_ino; /* File serial number. */
+#else
+ __ino64_t st_ino; /* File serial number. */
+#endif
__dev_t st_dev; /* Device containing the file. */
__nlink_t st_nlink; /* Link count. */
__uid_t st_uid; /* User ID of the file's owner. */
__gid_t st_gid; /* Group ID of the file's group. */
+#ifndef __USE_FILE_OFFSET64
__off_t st_size; /* Size of file, in bytes. */
+#else
+ __off64_t st_size; /* Size of file, in bytes. */
+#endif
__time_t st_atime; /* Time of last access. */
__time_t st_mtime; /* Time of last modification. */
@@ -70,11 +78,11 @@ struct stat
#ifdef __USE_LARGEFILE64
struct stat64
{
- __dev_t st_dev; /* Device. */
-
- __ino64_t st_ino; /* File serial number. */
__mode_t st_mode; /* File mode. */
+ __ino64_t st_ino; /* File serial number. */
+ __dev_t st_dev; /* Device. */
__nlink_t st_nlink; /* Link count. */
+
__uid_t st_uid; /* User ID of the file's owner. */
__gid_t st_gid; /* Group ID of the file's group.*/
__off64_t st_size; /* Size of file, in bytes. */
diff --git a/bits/statfs.h b/bits/statfs.h
index a92cf52315..03b92d8faa 100644
--- a/bits/statfs.h
+++ b/bits/statfs.h
@@ -35,12 +35,36 @@ struct statfs
{
unsigned int f_type;
unsigned int f_bsize;
+#ifndef __USE_FILE_OFFSET64
__fsblkcnt_t f_blocks;
__fsblkcnt_t f_bfree;
__fsblkcnt_t f_bavail;
__fsblkcnt_t f_files;
__fsblkcnt_t f_ffree;
+#else
+ __fsblkcnt64_t f_blocks;
+ __fsblkcnt64_t f_bfree;
+ __fsblkcnt64_t f_bavail;
+ __fsblkcnt64_t f_files;
+ __fsblkcnt64_t f_ffree;
+#endif
+ __fsid_t f_fsid;
+ unsigned int f_namelen;
+ unsigned int f_spare[6];
+ };
+
+#ifdef __USE_LARGEFILE64
+struct statfs64
+ {
+ unsigned int f_type;
+ unsigned int f_bsize;
+ __fsblkcnt64_t f_blocks;
+ __fsblkcnt64_t f_bfree;
+ __fsblkcnt64_t f_bavail;
+ __fsblkcnt64_t f_files;
+ __fsblkcnt64_t f_ffree;
__fsid_t f_fsid;
unsigned int f_namelen;
unsigned int f_spare[6];
};
+#endif