summaryrefslogtreecommitdiffstats
path: root/src/rbtree.c
Commit message (Collapse)AuthorAgeFilesLines
* add rb-tree implementation to libosmocorePablo Neira Ayuso2011-10-171-0/+389
This patch adds red black trees implementation to libosmocore. This data structure is very useful to search for elements in ordered sets in O(log n) instead of O(n) that lists provide. The first client of this code will be one follow up patch that implements rbtree-based timer scheduler.