aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.wmem
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-07-20 20:33:38 +0000
committerEvan Huus <eapache@gmail.com>2013-07-20 20:33:38 +0000
commit6635f5ef67de3307d6173effd179c0c0669f8eab (patch)
tree7f28516005189c92a348cc7a3157ace7a24840a4 /doc/README.wmem
parent19726260f1aabac6e22b4a2d4e0b0f383c8568b5 (diff)
Replace wmem slist (singly-linked) with wmem list (doubly-linked).
The overhead is not large, and it makes append much faster (O(1) vs O(n)). It also will make a queue easy to add, which I need for a dissector I'm writing... svn path=/trunk/; revision=50744
Diffstat (limited to 'doc/README.wmem')
-rw-r--r--doc/README.wmem4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.wmem b/doc/README.wmem
index f203e74fd3..e1fea5d409 100644
--- a/doc/README.wmem
+++ b/doc/README.wmem
@@ -92,8 +92,8 @@ wmem_strbuf.h
2.2.3 Container Data Structures
-wmem_slist.h
- - A singly-linked list implementation.
+wmem_list.h
+ - A doubly-linked list implementation.
wmem_stack.h
- A stack implementation (push, pop, etc).