linux-2.6.33/search_exception_tables()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#n504c98e]
#backlinks
*説明 [#q726bee4]
-パス: [[linux-2.6.33/kernel/extable.c]]
-FIXME: これは何?
--説明
**引数 [#r5ee4a1e]
-unsigned long addr
--
**返り値 [#jd9da694]
-const struct exception_table_entry *
--
--[[linux-2.6.33/exception_table_entry]]
**参考 [#wc4a4352]
*実装 [#e80232f0]
/* Given an address, look for it in the exception tables...
const struct exception_table_entry *search_exception_tab...
{
const struct exception_table_entry *e;
e = search_extable(__start___ex_table, __stop___ex_tabl...
-
--[[linux-2.6.33/search_extable()]]
--[[linux-2.6.33/__start___ex_table(global)]]
--[[linux-2.6.33/__stop___ex_table(global)]]
if (!e)
e = search_module_extables(addr);
-
--[[linux-2.6.33/search_module_extables()]]
return e;
}
*コメント [#vaaa49fc]
終了行:
*参照元 [#n504c98e]
#backlinks
*説明 [#q726bee4]
-パス: [[linux-2.6.33/kernel/extable.c]]
-FIXME: これは何?
--説明
**引数 [#r5ee4a1e]
-unsigned long addr
--
**返り値 [#jd9da694]
-const struct exception_table_entry *
--
--[[linux-2.6.33/exception_table_entry]]
**参考 [#wc4a4352]
*実装 [#e80232f0]
/* Given an address, look for it in the exception tables...
const struct exception_table_entry *search_exception_tab...
{
const struct exception_table_entry *e;
e = search_extable(__start___ex_table, __stop___ex_tabl...
-
--[[linux-2.6.33/search_extable()]]
--[[linux-2.6.33/__start___ex_table(global)]]
--[[linux-2.6.33/__stop___ex_table(global)]]
if (!e)
e = search_module_extables(addr);
-
--[[linux-2.6.33/search_module_extables()]]
return e;
}
*コメント [#vaaa49fc]
ページ名: