linux-5.15/populated_zone()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#t949bb4c]
#backlinks
*説明 [#hddd46ca]
-パス: [[linux-5.15/include/linux/mmzone.h]]
-ゾーンにページが存在している(= present_pagesが0以外)か...
**引数 [#yfcc02a0]
-struct zone *zone
--メモリゾーン。
--[[linux-5.15/zone]]
**返り値 [#j91c3755]
-bool
--ゾーンにページが存在している(= present_pagesが0以外)...
**参考 [#s881cdf6]
*実装 [#i208b9d1]
/* Returns true if a zone has memory */
static inline bool populated_zone(struct zone *zone)
{
return zone->present_pages;
}
-ゾーンにページが存在している(= present_pagesが0以外)な...
--[[linux-5.15/メモリ管理]]
*コメント [#ib2b2e55]
終了行:
*参照元 [#t949bb4c]
#backlinks
*説明 [#hddd46ca]
-パス: [[linux-5.15/include/linux/mmzone.h]]
-ゾーンにページが存在している(= present_pagesが0以外)か...
**引数 [#yfcc02a0]
-struct zone *zone
--メモリゾーン。
--[[linux-5.15/zone]]
**返り値 [#j91c3755]
-bool
--ゾーンにページが存在している(= present_pagesが0以外)...
**参考 [#s881cdf6]
*実装 [#i208b9d1]
/* Returns true if a zone has memory */
static inline bool populated_zone(struct zone *zone)
{
return zone->present_pages;
}
-ゾーンにページが存在している(= present_pagesが0以外)な...
--[[linux-5.15/メモリ管理]]
*コメント [#ib2b2e55]
ページ名: