linux-4.4.1/class_create()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#v69655f5]
#backlinks
*説明 [#d0721df1]
-パス: [[linux-4.4.1/include/linux/device.h]]
-FIXME: これは何?
--説明
**引数 [#e801ddaf]
-struct module *owner
--
--[[linux-4.4.1/module]]
-const char *name
--
**返り値 [#e09fa71a]
-struct class *
--
--[[linux-4.4.1/class]]
**参考 [#w8f2f0f7]
*実装 [#acfb1700]
/* This is a #define to keep the compiler from merging d...
* instances of the __key variable */
#define class_create(owner, name) \
({ \
static struct lock_class_key __key; \
__class_create(owner, name, &__key); \
})
-
--[[linux-4.4.1/lock_class_key]]
--[[linux-4.4.1/__class_create()]]
*コメント [#p2b2f77e]
終了行:
*参照元 [#v69655f5]
#backlinks
*説明 [#d0721df1]
-パス: [[linux-4.4.1/include/linux/device.h]]
-FIXME: これは何?
--説明
**引数 [#e801ddaf]
-struct module *owner
--
--[[linux-4.4.1/module]]
-const char *name
--
**返り値 [#e09fa71a]
-struct class *
--
--[[linux-4.4.1/class]]
**参考 [#w8f2f0f7]
*実装 [#acfb1700]
/* This is a #define to keep the compiler from merging d...
* instances of the __key variable */
#define class_create(owner, name) \
({ \
static struct lock_class_key __key; \
__class_create(owner, name, &__key); \
})
-
--[[linux-4.4.1/lock_class_key]]
--[[linux-4.4.1/__class_create()]]
*コメント [#p2b2f77e]
ページ名: