*参照元 [#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_tables(unsigned long addr)
 {
 	const struct exception_table_entry *e;
 
 	e = search_extable(__start___ex_table, __stop___ex_table-1, addr);
-
--[[linux-2.6.33/search_extable()]]
--[[linux-2.6.33/__start__ex_table(global)]]
--[[linux-2.6.33/__stop__ex_table(global)]]
--[[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]

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS