Changeset b26db0c in mainline


Ignore:
Timestamp:
2006-04-03T22:20:02Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a1fa51
Parents:
252127e
Message:

s/B+-tree/B+tree/

Location:
generic/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • generic/src/adt/btree.c

    r252127e rb26db0c  
    3232 * - values (i.e. pointers to values) are stored only in leaves
    3333 * - leaves are linked in a list
    34  * - technically, it is a B+-tree (because of the previous properties)
     34 * - technically, it is a B+tree (because of the previous properties)
    3535 *
    3636 * Be carefull when using these trees. They need to allocate
  • generic/src/mm/as.c

    r252127e rb26db0c  
    543543        /*
    544544         * Second, locate the left sibling and test its last record.
    545          * Because of its position in the B+-tree, it must have base < va.
     545         * Because of its position in the B+tree, it must have base < va.
    546546         */
    547547        if ((lnode = btree_node_left_sibling(&as->as_area_btree, leaf))) {
Note: See TracChangeset for help on using the changeset viewer.