답변:
당신은에보고해야합니다 <limits.h>
(예를 들어이 포함 된 파일, 또는 하나 sys/syslimits.h
에 대한 OS X에서) #define
의 UID_MAX
.
대부분의 최신 운영 체제 (Solaris 2.x, OS X, BSD, Linux, HP-UX 11i, AIX 6)는 최대 20 억 ( 2^31-2
) 을 처리 할 수 있으므로 더 모호한 시스템에 대해서는 해결책을 제시합니다. '티.
glibc는 모든 시스템 유형에 대한 정의를 제공합니다.
당신은 확인할 수 있습니다 /usr/include/bits/typesizes.h
:
% grep UID_T /usr/include/bits/typesizes.h
#define __UID_T_TYPE __U32_TYPE
다음으로 살펴보십시오 /usr/include/bits/types.h
.
% grep '#define __U32_TYPE' /usr/include/bits/types.h
#define __U32_TYPE unsigned int
이를 통해 C 유형을 찾을 수 있습니다. 바이트 단위의 크기가 필요하므로 가장 좋은 옵션은 다음의 사양에 따라 typedef 이름을 구문 분석하는 것입니다 types.h
.
We define __S<SIZE>_TYPE and __U<SIZE>_TYPE for the signed and unsigned
variants of each of the following integer types on this machine.
16 -- "natural" 16-bit type (always short)
32 -- "natural" 32-bit type (always int)
64 -- "natural" 64-bit type (long or long long)
LONG32 -- 32-bit type, traditionally long
QUAD -- 64-bit type, always long long
WORD -- natural type of __WORDSIZE bits (int or long)
LONGWORD -- type of __WORDSIZE bits, traditionally long
여기에 하나의 라이너가 있습니다.
% grep '#define __UID_T_TYPE' /usr/include/bits/typesizes.h | cut -f 3 | sed -r 's/__([US])([^_]*)_.*/\1 \2/'
U 32
여기 U
수단 unsigned
(이 또한 할 수 있습니다 S
에 대한 signed
) 및 32
크기입니다 (위의 목록을 찾아, 나는 대부분의 시간은 당신이 이미 바이트 크기가 있다고 가정 할 수있다, 생각하지만, 당신이 원하는 경우 스크립트가 완전히 휴대용이 될 case
이 값을 켜는 것이 좋습니다 .)
/usr/include/$(gcc -print-multiarch)/bits/typesizes.h
과 같습니다./usr/include/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/bits/typesizes.h
UID_MAX
. 예를 들어 UID의 최대 값을 찾는 데shadow-utils
사용(uid_t)-1
되는 도구입니다 .