X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flimits.h;h=02c2139d27d6e1f80446f0d7d1c2642ac317d71a;hb=a31a30a0076c284133c0f4dfa32b8b37883ac930;hp=25773ee464db3ba0424c80c919789ee3950c5327;hpb=80949ccdc6656c51292b4260b6e8d7b493ca6c45;p=musl diff --git a/include/limits.h b/include/limits.h index 25773ee4..02c2139d 100644 --- a/include/limits.h +++ b/include/limits.h @@ -1,13 +1,15 @@ #ifndef _LIMITS_H #define _LIMITS_H +#include + /* Most limits are system-specific */ #include /* Support signed or unsigned plain-char */ -#ifdef __CHAR_UNSIGNED__ +#if '\xff' > 0 #define CHAR_MIN 0 #define CHAR_MAX 255 #else @@ -35,15 +37,12 @@ #define MB_LEN_MAX 4 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) + || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define PIPE_BUF 4096 -#define PAGESIZE PAGE_SIZE #define FILESIZEBITS 64 #define NAME_MAX 255 -#define SYMLINK_MAX 255 #define PATH_MAX 4096 -#define NZERO 20 #define NGROUPS_MAX 32 #define ARG_MAX 131072 #define IOV_MAX 1024 @@ -51,18 +50,19 @@ #define WORD_BIT 32 #define SSIZE_MAX LONG_MAX #define TZNAME_MAX 6 -#define TTY_NAME_MAX 20 +#define TTY_NAME_MAX 32 #define HOST_NAME_MAX 255 /* Implementation choices... */ -#define PTHREAD_KEYS_MAX 1024 -#define PTHREAD_STACK_MIN PAGE_SIZE +#define PTHREAD_KEYS_MAX 128 +#define PTHREAD_STACK_MIN 2048 #define PTHREAD_DESTRUCTOR_ITERATIONS 4 #define SEM_VALUE_MAX 0x7fffffff #define SEM_NSEMS_MAX 256 #define DELAYTIMER_MAX 0x7fffffff #define MQ_PRIO_MAX 32768 +#define LOGIN_NAME_MAX 256 /* Arbitrary numbers... */ @@ -77,14 +77,29 @@ #define RE_DUP_MAX 255 #define NL_ARGMAX 9 -#define NL_LANGMAX 32 #define NL_MSGMAX 32767 -#define NL_NMAX (MB_LEN_MAX*4) #define NL_SETMAX 255 #define NL_TEXTMAX 2048 #endif +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_XOPEN_SOURCE) + +#ifdef PAGESIZE +#define PAGE_SIZE PAGESIZE +#endif +#define NZERO 20 +#define NL_LANGMAX 32 + +#endif + +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) \ + || (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE+0 < 700) + +#define NL_NMAX 16 + +#endif + /* POSIX/SUS requirements follow. These numbers come directly * from SUS and have nothing to do with the host system. */