s64
読み:エスろくじゅうよん
外語:s64
Linuxカーネル内で使用されている、64ビット長の符号付き整数。
定義
x86
x86のPC用の場合
/usr/src/linux-headers-2.6.XX-XX/arch/x86/include/asm/types.h
#include <asm-generic/types.h>
/usr/src/linux-headers-2.6.XX-XX/include/asm-generic/types.h
#include <asm-generic/int-ll64.h>
/usr/src/linux-headers-2.6.XX-XX/include/asm-generic/int-ll64.h
typedef signed long long s64;
typedef unsigned long long u64;
long longが64ビットの環境ではint-ll64.hが参照されるが、longが64ビットの環境ではint-l64.hが参照される想定のようである。
但し、x64環境ではLP64なのでlongは64ビットになるが、32ビット環境と同じくint-ll64.hが参照されている。
ARM
ARMのAndroidの場合も同様である。
android/kernel/arch/arm/include/asm/types.h
#include <asm-generic/int-ll64.h>
android/kernel/include/asm-generic/int-ll64.h
typedef signed long long s64;
typedef unsigned long long u64;
再検索