% 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
您需要查看
<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
:接下来你看看
/usr/include/bits/types.h
:这可以让您找出 C 类型。由于您需要以字节为单位的大小,因此最好的选择是根据以下规范解析 typedef 名称
types.h
:所以,这里有一个单行:
这里的
U
意思是unsigned
(这也可以是S
forsigned
)并且32
是大小(在上面的列表中查找它;我认为,大多数时候你可以假设它已经是字节大小,但是如果你希望你的脚本是完全可移植的case
开启这个值可能会更好)。在此链接中提出问题,响应者使用试错法确定相关系统使用有符号长整数,留下 31 位来存储值,最大值为 2,147,483,647。
这是一个有趣的问题。如果有一种标准的、可移植的方法来确定这一点,我会感到惊讶。
我手边没有 Linux 机器,但
id
FreeBSD 8.0 上的命令回零:我确定这是未定义的行为,但我敢打赌,大多数版本
id
要么使用65'536
(如果是 16 位 UID)包装为零,要么4'294'967'296
在超出系统限制时出错。