1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 15:52:00 -08:00

Adding a signature to splay tree structure. miscellaneous documentation and naming clean-up.

Copied from Perforce
 Change: 184448
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2014-02-23 10:24:44 +00:00
parent 29cba255f2
commit 1ac9877082
4 changed files with 313 additions and 277 deletions

View file

@ -73,7 +73,7 @@ Bool CBSCheck(CBS cbs)
/* See .enter-leave.simple. */
CHECKS(CBS, cbs);
CHECKL(cbs != NULL);
CHECKL(SplayTreeCheck(treeOfCBS(cbs)));
CHECKD(SplayTree, treeOfCBS(cbs));
/* nothing to check about treeSize */
CHECKD(Pool, cbs->blockPool);
CHECKL(BoolCheck(cbs->fastFind));