1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 06:38:07 +00:00

Merge pull request #571 from MintCN/master

modify the filename in Data Structures due to the filename conversion
This commit is contained in:
0xAX 2018-03-15 19:20:18 +01:00 committed by GitHub
commit f061d7bbe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -5,6 +5,6 @@ Linux kernel provides different implementations of data structures like doubly l
This part considers the following data structures and algorithms:
* [Doubly linked list](linux-datastructures1.md)
* [Radix tree](linux-datastructures1.md)
* [Bit arrays](linux-datastructures1.md)
* [Doubly linked list](linux-datastructures-1.md)
* [Radix tree](linux-datastructures-2.md)
* [Bit arrays](linux-datastructures-3.md)

View File

@ -66,9 +66,9 @@
* [The initcall mechanism](Concepts/linux-cpu-3.md)
* [Notification Chains](Concepts/linux-cpu-4.md)
* [Data Structures in the Linux Kernel](DataStructures/README.md)
* [Doubly linked list](DataStructures/linux-datastructures1.md)
* [Radix tree](DataStructures/linux-datastructures2.md)
* [Bit arrays](DataStructures/linux-datastructures3.md)
* [Doubly linked list](DataStructures/linux-datastructures-1.md)
* [Radix tree](DataStructures/linux-datastructures-2.md)
* [Bit arrays](DataStructures/linux-datastructures-3.md)
* [Theory](Theory/README.md)
* [Paging](Theory/linux-theory-1.md)
* [Elf64](Theory/linux-theory-2.md)