*参照元 [#jd8c3c69] #backlinks *説明 [#b0509588] -パス: [[linux-2.6.33/arch/arm/include/asm/ptrace.h]] -FIXME: これは何? --説明 --pt_regs の arm 版 **参考 [#mf16e758] -各レジスタのバックアップ位置も参照のこと --[[linux-2.6.33/ARM_r0(arm)]] *実装 [#ieea3c7c] /* * This struct defines the way the registers are stored on the * stack during a system call. Note that sizeof(struct pt_regs) * has to be a multiple of 8. */ #ifndef __KERNEL__ struct pt_regs { long uregs[18]; }; #else /* __KERNEL__ */ struct pt_regs { unsigned long uregs[18]; }; #endif /* __KERNEL__ */ *コメント [#u078d9ec]