linux-4.4.1/devres_alloc()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#oda557c8]
#backlinks
*説明 [#o38d9a76]
-パス: [[linux-4.4.1/include/linux/device.h]]
-FIXME: これは何?
--説明
**引数 [#d9ae3e25]
-dr_release_t release
--
--[[linux-4.4.1/dr_release_t]]
-size_t size
--
-gfp_t gfp
--
--[[linux-4.4.1/gfp_t]]
**返り値 [#d1058015]
-void *
--
**参考 [#o3638ab7]
*実装 [#hcac4c88]
**CONFIG_DEBUG_DEVRES 有効 [#a2b3d7d9]
-
--[[linux-4.4.1/CONFIG_DEBUG_DEVRES]]
#define devres_alloc(release, size, gfp) \
__devres_alloc_node(release, size, gfp, NUMA_NO_...
-
--[[linux-4.4.1/__devres_alloc_node()]]
**CONFIG_DEBUG_DEVRES 無効 [#k3c79d41]
static inline void *devres_alloc(dr_release_t release, s...
{
return devres_alloc_node(release, size, gfp, NUM...
-
--[[linux-4.4.1/devres_alloc_node()]]
}
*コメント [#e01a806c]
終了行:
*参照元 [#oda557c8]
#backlinks
*説明 [#o38d9a76]
-パス: [[linux-4.4.1/include/linux/device.h]]
-FIXME: これは何?
--説明
**引数 [#d9ae3e25]
-dr_release_t release
--
--[[linux-4.4.1/dr_release_t]]
-size_t size
--
-gfp_t gfp
--
--[[linux-4.4.1/gfp_t]]
**返り値 [#d1058015]
-void *
--
**参考 [#o3638ab7]
*実装 [#hcac4c88]
**CONFIG_DEBUG_DEVRES 有効 [#a2b3d7d9]
-
--[[linux-4.4.1/CONFIG_DEBUG_DEVRES]]
#define devres_alloc(release, size, gfp) \
__devres_alloc_node(release, size, gfp, NUMA_NO_...
-
--[[linux-4.4.1/__devres_alloc_node()]]
**CONFIG_DEBUG_DEVRES 無効 [#k3c79d41]
static inline void *devres_alloc(dr_release_t release, s...
{
return devres_alloc_node(release, size, gfp, NUM...
-
--[[linux-4.4.1/devres_alloc_node()]]
}
*コメント [#e01a806c]
ページ名: