Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2465 → Rev 2466

/branches/rcu/kernel/generic/include/adt/avl.h
77,7 → 77,7
uint64_t key;
/** Difference between heights of left and right subtree of this node.*/
short balance;
int8_t balance;
};
 
/** AVL tree structure. */
94,7 → 94,7
* Base is changed to the key of node which is deleted with function
* avltree_delete_min.
*/
uint64_t base; /**< POZOR: Base time for inserting new nodes */
uint64_t base;
};