Skip to content

Commit 7cc79d1

Browse files
committed
define LONG_MAX via arch alltypes.h, strip down bits/limits.h
LLONG_MAX is uniform for all archs we support and plenty of header and code level logic assumes it is, so it does not make sense for limits.h bits mechanism to pretend it's variable. LONG_BIT can be defined in terms of LONG_MAX; there's no reason to put it in bits. by moving LONG_MAX definition to __LONG_MAX in alltypes.h and moving LLONG_MAX out of bits, there are now no plain-C limits that are defined in the bits header, so the bits header only needs to be included in the POSIX or extended profiles. this allows the feature test macro logic to be removed from the bits header, facilitating a long-term goal of getting such logic out of bits. having __LONG_MAX in alltypes.h will allow further generalization of headers. archs without a constant PAGESIZE no longer need bits/limits.h at all.
1 parent 316730c commit 7cc79d1

File tree

34 files changed

+35
-117
lines changed

34 files changed

+35
-117
lines changed

arch/aarch64/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 1234
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffffffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF unsigned wchar_t;
1315
#endif

arch/aarch64/bits/limits.h

-7
This file was deleted.

arch/arm/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 1234
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF unsigned wchar_t;
1315
#endif

arch/arm/bits/limits.h

-7
This file was deleted.

arch/generic/bits/limits.h

Whitespace-only changes.

arch/i386/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg int
44

55
#define __BYTE_ORDER 1234
6+
#define __LONG_MAX 0x7fffffffL
67

78
#ifndef __cplusplus
89
#ifdef __WCHAR_TYPE__

arch/i386/bits/limits.h

-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2-
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31
#define PAGESIZE 4096
4-
#define LONG_BIT 32
5-
#endif
6-
7-
#define LONG_MAX 0x7fffffffL
8-
#define LLONG_MAX 0x7fffffffffffffffLL

arch/m68k/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg int
44

55
#define __BYTE_ORDER 4321
6+
#define __LONG_MAX 0x7fffffffL
67

78
#ifndef __cplusplus
89
#ifdef __WCHAR_TYPE__

arch/m68k/bits/limits.h

-7
This file was deleted.

arch/microblaze/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 4321
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF int wchar_t;
1315
#endif

arch/microblaze/bits/limits.h

-7
This file was deleted.

arch/mips/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 4321
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF int wchar_t;
1315
#endif

arch/mips/bits/limits.h

-7
This file was deleted.

arch/mips64/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 4321
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffffffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF int wchar_t;
1315
#endif

arch/mips64/bits/limits.h

-7
This file was deleted.

arch/mipsn32/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 4321
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF int wchar_t;
1315
#endif

arch/mipsn32/bits/limits.h

-7
This file was deleted.

arch/or1k/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg int
44

55
#define __BYTE_ORDER 4321
6+
#define __LONG_MAX 0x7fffffffL
67

78
#ifndef __cplusplus
89
TYPEDEF unsigned wchar_t;

arch/or1k/bits/limits.h

-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2-
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31
#define PAGESIZE 8192
4-
#define LONG_BIT 32
5-
#endif
6-
7-
#define LONG_MAX 0x7fffffffL
8-
#define LLONG_MAX 0x7fffffffffffffffLL

arch/powerpc/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg int
44

55
#define __BYTE_ORDER 4321
6+
#define __LONG_MAX 0x7fffffffL
67

78
#ifndef __cplusplus
89
#ifdef __WCHAR_TYPE__

arch/powerpc/bits/limits.h

-7
This file was deleted.

arch/powerpc64/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 1234
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffffffffffL
12+
1113
#ifndef __cplusplus
1214
TYPEDEF int wchar_t;
1315
#endif

arch/powerpc64/bits/limits.h

-7
This file was deleted.

arch/riscv64/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg long
44

55
#define __BYTE_ORDER 1234
6+
#define __LONG_MAX 0x7fffffffffffffffL
67

78
#ifndef __cplusplus
89
TYPEDEF int wchar_t;

arch/riscv64/bits/limits.h

-7
This file was deleted.

arch/s390x/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg long
44

55
#define __BYTE_ORDER 4321
6+
#define __LONG_MAX 0x7fffffffffffffffL
67

78
#ifndef __cplusplus
89
TYPEDEF int wchar_t;

arch/s390x/bits/limits.h

-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2-
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31
#define PAGESIZE 4096
4-
#define LONG_BIT 64
5-
#endif
6-
7-
#define LONG_MAX 0x7fffffffffffffffL
8-
#define LLONG_MAX 0x7fffffffffffffffLL

arch/sh/bits/alltypes.h.in

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#define __BYTE_ORDER 1234
99
#endif
1010

11+
#define __LONG_MAX 0x7fffffffL
12+
1113
#ifndef __cplusplus
1214
#ifdef __WCHAR_TYPE__
1315
TYPEDEF __WCHAR_TYPE__ wchar_t;

arch/sh/bits/limits.h

-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2-
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31
#define PAGESIZE 4096
4-
#define LONG_BIT 32
5-
#endif
6-
7-
#define LONG_MAX 0x7fffffffL
8-
#define LLONG_MAX 0x7fffffffffffffffLL

arch/x32/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg long long
44

55
#define __BYTE_ORDER 1234
6+
#define __LONG_MAX 0x7fffffffL
67

78
#ifndef __cplusplus
89
#ifdef __WCHAR_TYPE__

arch/x32/bits/limits.h

-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2-
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31
#define PAGESIZE 4096
4-
#define LONG_BIT 32
5-
#endif
6-
7-
#define LONG_MAX 0x7fffffffL
8-
#define LLONG_MAX 0x7fffffffffffffffLL

arch/x86_64/bits/alltypes.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _Reg long
44

55
#define __BYTE_ORDER 1234
6+
#define __LONG_MAX 0x7fffffffffffffffL
67

78
#ifndef __cplusplus
89
TYPEDEF int wchar_t;

arch/x86_64/bits/limits.h

-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2-
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31
#define PAGESIZE 4096
4-
#define LONG_BIT 64
5-
#endif
6-
7-
#define LONG_MAX 0x7fffffffffffffffL
8-
#define LLONG_MAX 0x7fffffffffffffffLL

include/limits.h

+11-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33

44
#include <features.h>
55

6-
/* Most limits are system-specific */
7-
8-
#include <bits/limits.h>
6+
#include <bits/alltypes.h> /* __LONG_MAX */
97

108
/* Support signed or unsigned plain-char */
119

@@ -17,8 +15,6 @@
1715
#define CHAR_MAX 127
1816
#endif
1917

20-
/* Some universal constants... */
21-
2218
#define CHAR_BIT 8
2319
#define SCHAR_MIN (-128)
2420
#define SCHAR_MAX 127
@@ -30,15 +26,19 @@
3026
#define INT_MAX 0x7fffffff
3127
#define UINT_MAX 0xffffffffU
3228
#define LONG_MIN (-LONG_MAX-1)
29+
#define LONG_MAX __LONG_MAX
3330
#define ULONG_MAX (2UL*LONG_MAX+1)
3431
#define LLONG_MIN (-LLONG_MAX-1)
32+
#define LLONG_MAX 0x7fffffffffffffffLL
3533
#define ULLONG_MAX (2ULL*LLONG_MAX+1)
3634

3735
#define MB_LEN_MAX 4
3836

3937
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
4038
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
4139

40+
#include <bits/limits.h>
41+
4242
#define PIPE_BUF 4096
4343
#define FILESIZEBITS 64
4444
#define NAME_MAX 255
@@ -53,6 +53,12 @@
5353
#define TTY_NAME_MAX 32
5454
#define HOST_NAME_MAX 255
5555

56+
#if LONG_MAX == 0x7fffffffL
57+
#define LONG_BIT 32
58+
#else
59+
#define LONG_BIT 64
60+
#endif
61+
5662
/* Implementation choices... */
5763

5864
#define PTHREAD_KEYS_MAX 128

0 commit comments

Comments
 (0)