diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2017-11-29 23:32:38 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2017-12-12 00:59:31 +0300 |
commit | 3abaa5ccd92231fd445b2599f13aca32aa003478 (patch) | |
tree | c49ed5c3a2d07920ebc4a51e2053af8bd6970846 /Documentation/core-api | |
parent | d22881dc13b62baf32e69e16fd4f8bdbe2aa3e4e (diff) | |
download | linux-3abaa5ccd92231fd445b2599f13aca32aa003478.tar.xz |
Documentation: add Sorting section to kernel-api
Add sort() and list_sort() to the kernel API documentation in a
new "Sorting" section.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/core-api')
-rw-r--r-- | Documentation/core-api/kernel-api.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/core-api/kernel-api.rst b/Documentation/core-api/kernel-api.rst index 2d9da6c40a4d..5d2d5f83579c 100644 --- a/Documentation/core-api/kernel-api.rst +++ b/Documentation/core-api/kernel-api.rst @@ -139,6 +139,15 @@ Division Functions .. kernel-doc:: lib/gcd.c :export: +Sorting +------- + +.. kernel-doc:: lib/sort.c + :export: + +.. kernel-doc:: lib/list_sort.c + :export: + Memory Management in Linux ========================== |