Difference between revisions of "KLinkedList"
Jump to navigation
Jump to search
(Created page with "Category:Kernel objects") |
(The kernel explicitely sees the nodes as a pair) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Kernel objects]] | [[Category:Kernel objects]] | ||
+ | |||
+ | Size : 0xC bytes | ||
+ | |||
+ | {| class="wikitable" border="1" | ||
+ | |- | ||
+ | ! Offset | ||
+ | ! colspan="2"|Type | ||
+ | ! Description | ||
+ | |- | ||
+ | | 0x0 | ||
+ | | style="text-align:center;" colspan="2"|u32 | ||
+ | | KLinkedListNode count | ||
+ | |- | ||
+ | | rowspan="2"|0x4 | ||
+ | | rowspan="2"|KLinkedListNodePair | ||
+ | | [[KLinkedListNode]]* | ||
+ | | Pointer to first KLinkedListNode in the list of objects | ||
+ | |- | ||
+ | | [[KLinkedListNode]]* | ||
+ | | Pointer to last KLinkedListNode in the list of objects | ||
+ | |} |
Latest revision as of 17:15, 14 December 2016
Size : 0xC bytes
Offset | Type | Description | |
---|---|---|---|
0x0 | u32 | KLinkedListNode count | |
0x4 | KLinkedListNodePair | KLinkedListNode* | Pointer to first KLinkedListNode in the list of objects |
KLinkedListNode* | Pointer to last KLinkedListNode in the list of objects |