Size: 616
Comment:
|
← Revision 11 as of 2017-12-30 01:30:27 ⇥
Size: 618
Comment: converted to 1.6 markup
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
Parent Node : [:New Kernel Hacking HOWTO:Kernel Hacking HOWTO] | Parent Node : [[New_Kernel_Hacking_HOWTO|Kernel Hacking HOWTO]] |
Line 6: | Line 6: |
1. [:FAQ/LinkedLists:Linked Lists] | 1. [[FAQ/LinkedLists|Linked Lists]] |
Parent Node : Kernel Hacking HOWTO
The Linux kernel cannot be linked to any external library. So kernel developers had to internally implement some API for the managing of data structures like linked lists, hash tables and trees. Furthermore they needed to re-implement light versions of some widely used C library functions like those that deal with strings (strcpy, strcat, et al) and with raw memory (memcpy, memset and the like).
- Hash Tables
- Radix Trees
- Red-Black Trees