linux-2.6.33/pt_regs(arm)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#jd8c3c69]
#backlinks
*説明 [#b0509588]
-パス: [[linux-2.6.33/arch/arm/include/asm/ptrace.h]]
--pt_regs の arm 版
**参考 [#mf16e758]
-各レジスタのバックアップ位置も参照のこと
--[[linux-2.6.33/ARM_r0(arm)]]
*実装 [#ieea3c7c]
/*
* This struct defines the way the registers are stored ...
* stack during a system call. Note that sizeof(struct ...
* 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]
終了行:
*参照元 [#jd8c3c69]
#backlinks
*説明 [#b0509588]
-パス: [[linux-2.6.33/arch/arm/include/asm/ptrace.h]]
--pt_regs の arm 版
**参考 [#mf16e758]
-各レジスタのバックアップ位置も参照のこと
--[[linux-2.6.33/ARM_r0(arm)]]
*実装 [#ieea3c7c]
/*
* This struct defines the way the registers are stored ...
* stack during a system call. Note that sizeof(struct ...
* 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]
ページ名: