reverse definition dependency between PAGESIZE and PAGE_SIZE
authorRich Felker <dalias@aerifal.cx>
Sat, 10 Mar 2018 22:47:14 +0000 (17:47 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 10 Mar 2018 22:47:14 +0000 (17:47 -0500)
PAGESIZE is actually the version defined in POSIX base, with PAGE_SIZE
being in the XSI option. use PAGESIZE as the underlying definition to
facilitate making exposure of PAGE_SIZE conditional.

arch/i386/bits/limits.h
arch/or1k/bits/limits.h
arch/s390x/bits/limits.h
arch/sh/bits/limits.h
arch/x32/bits/limits.h
arch/x86_64/bits/limits.h
include/limits.h

index 65a3dd6477bce24af82e092e9172fbcf18829e46..c340ceb220afe396641fb0f9cf013401f7c64297 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define PAGE_SIZE 4096
+#define PAGESIZE 4096
 #define LONG_BIT 32
 #endif
 
index 483b6749b1dbe7760dc7152480cbcd267854c184..3a811c997a329ecea4e5ee8aac2792b6b3976c92 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define PAGE_SIZE 8192
+#define PAGESIZE 8192
 #define LONG_BIT 32
 #endif
 
index 792a30b95b21c4cf1ea1c17d17400c325d42d072..86ef7663fd0cb06ab4ddc0f8670a88c3121a4d73 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define PAGE_SIZE 4096
+#define PAGESIZE 4096
 #define LONG_BIT 64
 #endif
 
index 65a3dd6477bce24af82e092e9172fbcf18829e46..c340ceb220afe396641fb0f9cf013401f7c64297 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define PAGE_SIZE 4096
+#define PAGESIZE 4096
 #define LONG_BIT 32
 #endif
 
index 65a3dd6477bce24af82e092e9172fbcf18829e46..c340ceb220afe396641fb0f9cf013401f7c64297 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define PAGE_SIZE 4096
+#define PAGESIZE 4096
 #define LONG_BIT 32
 #endif
 
index 792a30b95b21c4cf1ea1c17d17400c325d42d072..86ef7663fd0cb06ab4ddc0f8670a88c3121a4d73 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define PAGE_SIZE 4096
+#define PAGESIZE 4096
 #define LONG_BIT 64
 #endif
 
index f9805a1e15964995ffc47e830a66e60b255e728e..3e4760930e4935aab44bf5cee6069771de7a554c 100644 (file)
@@ -40,8 +40,8 @@
  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 
 #define PIPE_BUF 4096
-#ifdef PAGE_SIZE
-#define PAGESIZE PAGE_SIZE
+#ifdef PAGESIZE
+#define PAGE_SIZE PAGESIZE
 #endif
 #define FILESIZEBITS 64
 #define NAME_MAX 255