From 0ba98fa9d5c4358c2d8105483f0913dcd54685bb Mon Sep 17 00:00:00 2001 From: donnaskiez Date: Sun, 16 Jun 2024 20:07:48 +1000 Subject: [PATCH] e --- driver/containers/tree.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/driver/containers/tree.c b/driver/containers/tree.c index 6f491bb..34449cd 100644 --- a/driver/containers/tree.c +++ b/driver/containers/tree.c @@ -4,6 +4,9 @@ * Basic red-black tree implementation. Currently the enumeration routines are * recursive which maybe isnt the best idea given the environment this is meant * for (kernel mode). We can always fix that up later though :). + * + * https://www.kernel.org/doc/Documentation/rbtree.txt + * https://github.com/torvalds/linux/blob/master/lib/rbtree.c */ /**